*{
    background-image: url('https://unsplash.com/photos/a-view-of-a-mountain-range-at-sunset-KJKgvXUMr2U');
}

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    
    
    

}
h1{
    color: rgb(0, 0, 0);
}


/* Set a background color and text color for the entire page */
body {
    background-color: #f5f5f5;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Style the header section */
header {
    background-color: #0056b3;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
    text-align: center;
    border-top: 35px;
    padding: 40px 0;
}

nav li {
    display: inline;
    margin-right: 100px;
}

nav a {
    text-decoration: none;
    color:#007bff
    /* font-weight : bold;
    justify-content : center;
    font-size : 35px ; */
}

/* Style the main sections */
.interviewer-section, .candidate-section {
    background-color: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(87, 22, 239, 0.1);
}

/* Style the video container */
.video-container {
    position: relative;
    /* box: #333; */
}

/* Style the label and input for video selection */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="number"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Style the chat container */
.chat-container {
    background-color: rgb(227, 235, 240);
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
    
    text-align: center;
    margin-bottom: 20px;
}

.chat-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #cebfbf;
    border-radius: 3px;
}

.chat-input {
    margin-top: 10px;
}

input[type="textarea"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button#send-button {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color:black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button#send-button:hover {
    background-color: lightsalmon;
}

/* Style the voice recognition button and instructions */
#start-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#start-btn:hover {
    background-color: #007bff;
}

#instructions {
    text-align: center;
    margin-bottom: 20px;
}

/* Style the transcript textbox */
#textbox {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 10px 0;
}

/* Responsive design for smaller screens (e.g., mobile devices) */
@media (max-width: 768px) {
    nav ul {
        text-align: left;
    }
}