

/* Header and Form Styles */
button:disabled {
    background-color: #ccc; /* Light gray */
    color: #666; /* Dark gray text */
    cursor: not-allowed; /* Show a 'not-allowed' cursor */
    opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"], select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #0d1128;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus {
    border-color: #fd5f00;
    outline: none;
}

button {
    //width: 100%;
    background-color: #fd5f00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin: 10px 0;
	/* float : right; */
}

button:hover {
    background-color: #e14d00;
}
/* Progress Bar Styles */
#progress-bar {
    background-color: #0d1128; /* Background color of the progress bar container */
    border-radius: 5px;
    height: 30px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

#progress-bar > div {
    height: 100%;
    background-color: #fd5f00; /* Fill color of the progress bar */
    border-radius: 5px;
    transition: width 0.3s ease;
}

#progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
}

/* Timer Styles */
#timer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

#clock-icon {
    font-size: 24px;
    color: #0d1128;
    margin-right: 8px;
}

#time-remaining {
    font-size: 18px;
}

/* Final Message Styles */
#quiz-content {
    text-align: center;
}

#quiz-content h2 {
    color: #fd5f00;
    font-size: 24px;
    margin-bottom: 20px;
}

#quiz-content p {
    color: #0d1128;
    font-size: 18px;
    margin: 10px 0;
}

#quiz-content pre {
    background-color: #f4f4f4;
    border: 2px solid #fd5f00;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    display: inline-block;
    color: #0d1128;
    font-size: 16px;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.details-table th,
.details-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.details-table th {
    background-color: #0d1128;
    color: white;
}

.details-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.details-table tr:hover {
    background-color: #ddd;
}

#completion-message {
    text-align: center;
    padding: 20px;
    border: 1px solid #0d1128;
    border-radius: 10px;
    background-color: #f2f2f2;
    max-width: 600px;
    margin: 20px auto;
}
