@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
color: #fff; font-family: Inter;  letter-spacing: -0.7px 
}

/* styles.css */
#output {
opacity: 0
}

#start_interview {
margin-top: 7px;
 border: 3px solid #007bff;
 background-color: #121212; 
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: Inter, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow-y: scroll;
}

h2 {
    margin-bottom: 20px;
    font-size: 50px
}

/* File Upload Wrapper */
.file-input-wrapper {
    position: relative;
    display: inline-block;
}

/* Hidden File Input */
input[type="file"] {
    display: none;
}

/* Styled Label (Clickable Button) */
.file-label {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 200px;
    text-align: center;
        font-size: 17px
}

.file-label:hover {
    background-color: #0056b3;
}

/* File Name Display */
#fileName {
    margin-top: 5px;
    font-size: 20px;
    color: #bbbbbb;
}

#tone {
    width: 200px;
    padding: 10px;
    border: 2px solid #0056b3;
    border-radius: 8px;
    font-size: 16px;
    background-color: #007bff;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}
#tone:hover {
    background-color: #0056b3;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 17px
}

button:hover {
    background: #0056b3;
}

#output {
    margin-top: 20px;
    white-space: pre-wrap;
    text-align: left;
    max-width: 80%;
    background: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    overflow-wrap: break-word;
}
