:root {
    --primary-color: #062448;
    --primary-background: #99C1F1FF;
    --secondary-color: #f8f9fa;
    --accent-color: #e9f2ff;
}
 
body {
    /*background-color: #F0F2FE;*/
}

.form-section1 {
    background-color: var(--secondary-color);
    padding: 25px;
    margin-bottom: 25px;
    border-left: 2px solid var(--primary-color);
}

.form-section * {
    /*border: 1px solid #000000;*/
}

.form-section .form-caption {
    padding: 15px;
    background-color: #F0F2FE;
    margin-left: -15px;
    margin-right: -15px;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: 40px;
    grid-gap: 1em;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 18px;
}

.form-caption-step {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #DBDCF8;
    color: #5B5C7A;
    text-align: center;
    font-weight: bold;
    font-size: 90%;
}

.form-caption-text {
    display: flex;
    align-items: center;
    font-weight: bold;
}




.text-bold { font-weight: bold }
.text-sm {font-size: 80%}
.btn-rounded {border-radius: 50px}
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
}

.calendar-day {
    border-radius: 50px;
    /*border: 1px solid #707571;*/
    background-color: #F2F6F0;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-weight: bold;*/
    color: #333333;
}

.calendar-day:hover {
    /*background-color: #CFD;*/
    cursor: pointer;
}

.calendar-day.diabled {
        /*background-color: #c0c0c0;*/
}
.calendar-day.empty {
    background-color: transparent;
    border: none;
}


.calendar-day.busy {
    background-color: #ffffff;
    font-weight: normal;
    /*text-decoration: line-through;*/
    color: #e0e0e0;
}

.calendar-day.weekend {
    font-weight: bold;
    text-decoration: none;
    color: #A51D2DFF
}


.calendar-day.active {
    background-color: #4A7;
    color: #ffffff;
}

.calendar-time-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.calendar-time {
    background-color: #f0f0f0;
    color: #999999;
    padding: 5px;
    text-align: center;
    border-radius: 17px;
}

.calendar-time.busy {
    text-decoration: line-through;
    background-color: #ffffff;
    color: #c03333;
}

.calendar-time.active {
    background-color: #22AA66;
    color: #ffffff;
}



        .file-upload-area {
            border: 3px dashed #ced4da;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            background-color: #f8f9fa;
            transition: all 0.3s;
        }
        
        .file-upload-area:hover {
            border-color: var(--primary-color);
            background-color: var(--accent-color);
        }
        
        .file-upload-area.dragover {
            border-color: var(--primary-color);
            background-color: var(--accent-color);
        }
        
        .documents-list {
            background-color: #fff9e6;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border-left: 1px solid #ffc107;
        }
        
        .documents-list h4 {
            color: #856404;
            margin-bottom: 15px;
        }
        
        .documents-list ol {
            padding-left: 20px;
        }
        
        .documents-list li {
            margin-bottom: 8px;
        }






/* UPLOAD FILE STYLES */

    .upload-area {
        border: 2px dashed #ccc;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
    }
    .upload-area:hover {
        border-color: #007bff;
        background-color: #f8f9fa;
    }
    .upload-area.dragover {
        border-color: #007bff;
        background-color: #e9ecef;
    }
    .file-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border: 1px solid #dee2e6;
        margin-bottom: 5px;
        border-radius: 4px;
    }
    .file-info {
        flex-grow: 1;
    }
    .file-name {
        font-weight: 500;
        margin-right: 10px;
    }
    .file-size {
        color: #6c757d;
        font-size: 0.9em;
    }
    .remove-file {
        color: #dc3545;
        cursor: pointer;
        padding: 0 5px;
    }
    .remove-file:hover {
        color: #bd2130;
    }
    
    .file-link {
        text-decoration: none;
    }

#PromiseConfirm .modal-content {
    background-color: #F0f0ff;
    box-shadow: 1px 1px 20px 10px rgba(0,0,0,0.115);
}

#PromiseConfirm .modal-header {
    background-color: #38E;
    color: #ffffff;
}

