/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
/* ===== Import Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ===== Base Font Styling ===== */
body {
    font-family: 'Open Sans', Arial, sans-serif !important;
    color: #00466C !important;   /* Dark blue for all text */
    background-color: #ffffff;
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6,
.question-title-container,
.survey-name,
.group-name {
    font-family: 'DM Serif Text', serif !important;
    color: #00466C !important;
    font-weight: 400; /* Regular */
}

/* ===== Question Text ===== */
.question-text, 
.question-valid-container, 
.help-block {
    font-family: 'Open Sans', Arial, sans-serif !important;
    color: #00466C !important;
}

/* ===== Buttons ===== */
.btn-primary,
.ls-move-btn,
.ls-button-submit {
    background-color: #E0547D !important;   /* Pink */
    border-color: #E0547D !important;
    color: #fff !important;
    border-radius: 22px !important;
}

.btn-primary:hover,
.ls-move-btn:hover,
.ls-button-submit:hover {
    background-color: #c94368 !important; /* Slightly darker pink on hover */
    border-color: #c94368 !important;
}

/* ===== Progress Bar ===== */
.progress-bar {
    background-color: #E0547D !important;
    border-radius: 22px !important;
}

/* ===== Block Backgrounds (Groups, Panels) ===== */
.card, 
.panel, 
.group-container,
.question-container {
    background-color: #EAF4FC !important;   /* Light Blue */
    border-radius: 22px !important;
    padding: 20px;
    margin-bottom: 20px;
    border: none !important;
}

/* ===== Inputs & Dropdowns ===== */
.form-control, 
select, 
textarea, 
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
    border-radius: 10px !important;
    border: 1px solid #ccc;
    font-family: 'Open Sans', Arial, sans-serif !important;
}

/* ===== Radio / Checkbox Labels ===== */
.ls-answers label {
    font-family: 'Open Sans', Arial, sans-serif !important;
    color: #00466C !important;
}

/* ===== Survey Title & Description ===== */
.survey-name, .survey-description {
    font-family: 'DM Serif Text', serif !important;
    color: #00466C !important;
}
.asterisk{
    color: #e0537e;
}
.col-centered{
    background-color: #EAF4FC !important;
    border-radius: 22px !important;
    padding: 20px;
    margin-bottom: 20px;
    border: none !important;
    color: #232d35;
}
.completed-heading{
        color: #15466c !important;
}
.completed-Content{
        color: #15466c !important;
}
@media screen and (max-width: 767px) {
    .choice-5-pt-radio .list-group-horizontal {
        flex-direction: row;
    }

    .list-group.list-group-horizontal .radio-item {
        margin-right: 1rem;
    }
}
