/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
} */
.navbarCI {
    display: flex;
    justify-content: center;
    background: #6d9ecf;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.navbarCI button {
    background: none;
    border: none;
    color: #ffffff;
    padding: 12px 25px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}
.navbarCI button:hover, .navbarCI button.activeCI {
    background: #5a8dc8;
    border-radius: 5px;
    color: white;
}
.containerCI {
    width: 90%;
    margin: 40px auto;
    background: #ffffff;
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.contentCI {
    display: none;
    padding: 25px;
    border-top: 2px solid #6d9ecf;
}
.contentCI.defaultCI {
    display: block;
}
@media (max-width: 768px) {
    .navbarCI {
        flex-direction: column;
        align-items: center;
    }
    .navbarCI button {
        width: 100%;
        text-align: center;
    }
}

.mainAn {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.announcement {
    background: white;
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.date {
    color: #666;
    font-size: 0.9em;
}

.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; */
}
.filter-form label {
    font-weight: bold;
    margin-right: 5px;
}
.filter-form input, .filter-form button {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.filter-form input[type="month"] {
    width: 160px;
}
.filter-form input[type="text"] {
    width: 200px;
}
.filter-form button {
    background-color: #6eaef8;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.filter-form button:hover {
    background-color: #4191ed;
}

.calendar-container {
    font-family: Arial, sans-serif;
    text-align: center;
    width: 80%;
    margin: auto;
}
.calendar-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.calendar-day {
    border: 1px solid #ddd;
    padding: 10px;
    min-height: 80px;
    position: relative;
}
.calendar-day-header {
    font-weight: bold;
    background: #f4f4f4;
}
.calendar-event {
    background: #ffcc00;
    color: #000;
    padding: 3px;
    margin-top: 5px;
    font-size: 12px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}
.calendar-holiday {
    background: #ff6666;
    color: #fff;
}

/* .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    width: 80%;
    margin: auto;
}
.day {
    border: 1px solid #ddd;
    padding: 10px;
    min-height: 80px;
    position: relative;
}
.header {
    font-weight: bold;
    background: #f4f4f4;
}
.event {
    background: #ffcc00;
    color: #000;
    padding: 3px;
    margin-top: 5px;
    font-size: 12px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    right: 0;
}
.holiday {
    background: #ff6666;
    color: #fff;
} */

/* .bodyCI {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.containerCI {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.h1CI {
    text-align: center;
}
.menuCI {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.menuCI button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.menuCI button:hover {
    background: #0056b3;
}
.contentCI {
    display: none;
    padding: 20px;
    border-top: 2px solid #007BFF;
} */


/* @import url('https://fonts.googleapis.com/css2?family=Mitr:wght@400;500&family=Nunito:wght@800&display=swap'); */

:root {
    --primary-blue: #67A3D7;
    --light-blue: #e0f2f7;
    --accent-blue: #17a2b8;
    --dark-blue: #1c5d9e;

    --sidebar-bg: #67A3D7;
    --sidebar-hover: #488cd4;
    --sidebar-active: #34699A;
    --sidebar-submenu-bg: #6ba7e7;

    --white: #ffffff;
    --black: #333333;
    --gray-light: #f8f9fa;
    --gray-medium: #dee2e6;
    --text-color: #495057;
    --shadow: rgba(0, 0, 0, 0.1);

    --color-1: #F5A0C6;
    --color-2: #C2DFF1;
    --color-3: #63C276;
    --color-4: #8BCBF3;
    --color-5: #8AB1D8;

    --color-6: #90A0BB;
    --color-7: #030303;
    --color-8: #BBC6D9;
    --color-9: #8D8C8F;
    --color-10: #b48dca;

    --event-meeting: #a2c4f7;
    --event-party: #fcd994;
    --event-holiday: #f7a2a2;
    --event-training: #a2f7c4;
    --event-deadline: #c8a2f7;
    --event-others: #cccccc;

    --ql-hr-color: #e67e22;
    --ql-ba-color: #3498db;
    --ql-dem-color: #9b59b6;
    --ql-learning-color: #27ae60;
    --ql-pos-color: #e74c3c;
    --ql-ticket-color: #f1c40f;
    --ql-wh-color: #1abc9c;
    --ql-ev-color: #34495e;
}

.form-bordered .form-group.no-top-border {
    border-top: none !important;
}

