/* Survey Page Container */
.survey-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f7fa;
}

.survey-page .survey-container {
    max-width: 600px;
    min-height: 50vh;
    width: 100%;
    padding: 40px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Progress Bar */
.survey-page .progress-bar-container {
    margin-bottom: 30px;
    flex: 1;
    
}

.survey-page md-progress-linear {
    height: 8px;
    border-radius: 4px;
    background-color: transparent;
}

/* Question Header */
.survey-page h2 {
    font-size: 20px;
    font-weight: semi-bold;
    color: #333;
    /* margin-bottom: 10px; */
}
@media (max-width: 480px) {
    .survey-page h2 {
        font-size: 14px;
    }
}

.survey-page p {
    font-size: 26px;
    font-weight: bold;
    color: #666;
    margin-bottom: 30px;
}
@media (max-width: 480px) {
    .survey-page p {
        font-size: 16px;
    }
}

/* Input Question */
.survey-page md-input-container {
    width: 100%;
}

.survey-page input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Date Picker */
.survey-page md-datepicker {
    display: flex;
    width: 100%;
    width: fit-content;
    /* background-color: green; */
    border: 1px solid #ccc !important;
    padding: 20px 50px;
    border-radius: 20px;
    align-items: center;
    align-items: baseline;
}
.md-datepicker-triangle-button.md-button.md-icon-button{
    margin-right: 10px;
}

/* Select (Dropdown) Question */
.survey-page .countrySelect {
    margin-bottom: 20px;
    text-align: left;
}

.survey-page .countrySelect label {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.survey-page .countrySelect select {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.selectState select{
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.selectState{
    margin-bottom: 20px;
    text-align: left;
}
.selectState label {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.survey-page .countrySelect select:focus {
    border-color: #007bff;
    background-color: #fff;
}

/* Radio Button Question */
.survey-page md-radio-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.survey-page md-radio-button {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Navigation Buttons */
.survey-page .md-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #323A42;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.survey-page .md-button[ng-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.survey-page .md-button:not([ng-disabled]):hover {
    opacity: 0.8;
}

/* .survey-page .md-button.previous {
    background-color: #ff5c5c;
    margin-right: 10px;
} */

.survey-page .md-button.next {
    background-color: #4CAF50;
}

/* Survey Completion Message */
.survey-page .survey-complete-message {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

