/********** Template CSS **********/
:root {
    --primary: #00d4db;
    --secondary: #191C24;
    --light: #fff;
    --dark: #000000;
}
label {
    margin-bottom: 5px;
}
.body {
    background-color:#fff !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



.form_box {
    width: 450px;
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) ;
    padding: 20px;
    /* border: 1px solid #000; */
    border-radius: 20px;
    background-color: var(--light);
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    
.form_box h3 {
    margin-bottom: 30px;
    color: #000000;
}
.top {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
}
.select {
    margin-bottom: 30px;
}
.form_box select {
    width: 100%;
    border-radius: 100px;
    outline: none;
    padding: 10px;
    border: 1px solid var(--primary);
}
.form_box input {
    width: 100%;
    border-radius: 100px;
    outline: none;
    padding: 10px 10px 10px 50px;
    border: 1px solid var(--primary);
}
.username {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.username_icon_box {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px 0 0 50px;
}
.username_icon_box i {
    color: var(--light);
    font-size: 20px;
}

.password {
    position: relative;
    margin-bottom: 30px;
}
.Password_icon_box {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px 0 0 50px;
}

.Password_icon_box i {
    color: var(--light);
    font-size: 20px;
}

#eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.submit button {
   width: 100%;
    border-radius: 100px;
    outline: none;
    padding: 10px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--light);
}









/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #0000001c;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--dark);
    font-weight: 500;
    /* border-left: 3px solid var(--secondary); */
    border-top:1px solid #1010101f;
    border-bottom:1px solid #1010101f;
    border-radius: 0 0px 0px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background:#1010101f;
    /* border-color: var(--primary); */
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top:10px;
    /* transform: translateY(-50%); */
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    /* border-radius: 0 30px 30px 0; */
    color: var(--dark);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: #1010101f;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 15px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    /* width: 40px;
    height: 40px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: #0000001c; */
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    /* margin-left: 6px;
    vertical-align: middle;
    border: none; */
    /* content: "none"; */
    /* font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s; */
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}
.navbar {
    padding-top: 0;
}
.navbar-brand {
    width: 100%;
    background-color: var(--primary);
    margin-right: 0;
}
.navbar-brand img {
    width: 100%;
}
.appli {
    color: #858181;
    margin: 0;
    padding: 10px 20px;
}
.dash_heading {
    border:0 !important;
}

.dropdown-menu {
    padding: 0;
    transition: all .3s;
}

.dropdown-menu.show {
    /* transition: .3s; */
}
.dropdown-item {
    list-style-type: circle;
    position: relative;
    padding: 10px 10px 10px 40px !important;
    border-left:2px solid #00d4db;
}
.dropdown-item::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
    left: 27px;
}
.List_1 {
    animation: left .4s ease-in-out;
}
@keyframes left {
    0% {
    transform: translateX(-50%);
}
100% {
    transform: translateX(0);
}
}
.List_2 {
    animation: left .5s ease-in-out;
}
@keyframes left {
    0% {
    transform: translateX(-50%);
}
100% {
    transform: translateX(0);
}
}
.List_3 {
    animation: left .6s ease-in-out;
}
@keyframes left {
    0% {
    transform: translateX(-50%);
}
100% {
    transform: translateX(0);
}
}
.bg-secondary-1 {
    background-color: var(--light);
}
.content .navbar .sidebar-toggler {
    background-color: #0000001c;
}
.sidebar-toggler i {
    color: #00d4db;
}
.d-md-flex {
    width: 50%;
    position: relative;
}
.d-md-flex i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: var(--dark);
}
.form-control {
    background-color: unset;
    border:1px solid #00d4db;
}
.admin_logo {
    display: flex;
    width: 190px;
}
.admin_logoheading {
    display: flex;
    flex-direction: column;
}
.small_apan {
    font-size: 12px;
}
/* .content_top_bar_icon {
    width: 50%;
} */
 .form-control-2 {
    border-radius: 50px;
 }
 .form-control:focus {
    color: #6C7293;
    background-color:transparent;
    border-color: #00d4db;
    outline: 0;
    box-shadow: 0 0 0 .25rem #00d4db59;
 }
 .tab_page_content_heading h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
 }
 .tabbox_button {
    display: flex;
    justify-content: right;
    gap: 20px;
    margin-bottom: 20px;
 }
 .tab_page_content_box {
    background-color: var(--light);
    padding: 10px;
    border-radius: 10px;
 }
  .tabbox_button button {
    padding: 5px 10px;
    background-color: #00d4db;
    outline: unset;
    border: 0;
    border-radius: 5px;
    color: #fff;
  }
  .content_box_select_div {
    margin-bottom: 20px;
  }
  .content_box_select_div p {
    margin-bottom: 10px;
    color: #000;
  }
  .content_box_select_div select {
    width: 100%;
    border-radius: 5px;
    outline: unset;
    padding: 5px 10px;
    border: 1px solid #00d4db;
  }
  .content_box_select_div input {
    width: 100%;
    border-radius: 5px;
    outline: unset;
    padding: 5px 10px;
    border: 1px solid #00d4db;
  }
  .button_box button {
    background-color: #00d4db;
    border-radius: 5px;
    outline: unset;
    border: 0;
    padding: 5px 20px;
    color: #fff;
  }
  .box_shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 16px -7px 16px;
  }
  .tabbox2_serch {
    display: flex;
    justify-content: right;
    margin-bottom: 20px;
    position: relative;
  }
  .tabbox2_serch input {
    width: 100%;
    border-radius: 5px;
    outline: unset;
    padding: 5px 40px 5px 10px;
    border: 1px solid #00d4db;
  }
  .tabbox2_serch form {
    width: 50%;
  }
  .tabbox2_serch i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .content_box_tab_content {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
  }
  .tabbox_table  {
    border-radius: 6px !important;
    border: 1px solid #1010101f;
    margin-bottom: 20px;
  }
  .tabbox_table table  {
    width: 100%;
  }
  .tabbox_table table  {
    background-color: #1010101f;
  }
  .tabbox_table table thead th {
    padding: 10px;
    color: var(--dark);
    text-align: center;
  }
  .tabbox_table table td {
    padding: 10px;
  }
  .tabbox_table tbody {
    background-color:var(--light);
  }
  .pagination {
    display: flex;
    justify-content: right;
  }
  .page-link {
    color: var(--dark);
  }
  .one {
    background-color: #00d4db;
    color: #fff;
}
.search4_box {
    position: relative;
}
.tab4_select select {
    width: 100%;
    border-radius: 5px;
    outline: unset;
    padding: 5px 10px;
    border: 1px solid #00d4db;
}
.search4_box input {
    width: 100%;
    border-radius: 5px;
    outline: unset;
    padding: 5px 10px;
    border: 1px solid #00d4db;
}
.search4_box i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
/* .tabbox4_serch {
    margin-bottom: 20px;
} */
.modal-body h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
}
.modal-body input {
    width: 100%;
    border: 1px solid #00d4db;
    outline: unset;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 20px;
}
.modal-body select {
    width: 100%;
    border-radius: 5px;
    outline: unset;
    padding: 5px 10px;
    border: 1px solid #00d4db;
    margin-bottom: 20px;
}
.modal_btn_box {
    display: flex;
    gap: 10px;
}
.modal_btn_box button {
    padding: 5px 20px;
    border: 1px solid #00d4db;
    outline: unset;
    border-radius: 5px;
    background-color: #00d4db;
    color: #fff;
}
.cnl_btn {
    background-color: #0000001c !important;
    color: #000 !important;
    border: unset !important;
}
.tab4_select {
    margin-bottom: 20px;
}
.page-link:hover {
    color: #000;
}
.page-link:focus {
    color: var(--dark);
    background-color: transparent;
    box-shadow: 0 0 0 .25rem #00d4db59;
}
.red {
    color: red;
}


.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.current-month {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    min-width: 200px;
    text-align: center;
}

.view-controls {
    display: flex;
    gap: 10px;
}

/* Button Styles */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    width: 45px;
    height: 45px;
    padding: 0;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-icon:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.btn-view {
    background: #f8fafc;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-view.active,
.btn-view:hover {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-color: var(--primary);
    color: white;
    /* border-color: #667eea; */
}

.btn-primary {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* Calendar Container */
.calendar-container {
    position: relative;
    margin-bottom: 30px;
}

.calendar-view {
    display: none;
}

.calendar-view.active {
    display: block;
}

/* Month View */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.weekday {
    background: #f8fafc;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.calendar-day {
    background: white;
    min-height: 120px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: #f8fafc;
}

.calendar-day.other-month {
    background: #f8fafc;
    color: #94a3b8;
}

.calendar-day.today {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.calendar-day.selected {
    background: #10b981;
    color: white;
}

.day-number {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.day-events {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-dot {
    height: 4px;
    border-radius: 2px;
    margin-bottom: 2px;
    font-size: 10px;
    padding: 2px 4px;
    color: white;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Week View */
.week-header {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.time-column,
.day-column {
    background: #f8fafc;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #64748b;
}

.week-grid {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    max-height: 600px;
    overflow-y: auto;
}

.time-slot {
    background: white;
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
    min-height: 60px;
    position: relative;
}

.time-slot:first-child {
    border-top: none;
}

.time-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.week-event {
    position: absolute;
    left: 5px;
    right: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: white;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    z-index: 10;
}

/* Day View */
.day-timeline {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-height: 600px;
    overflow-y: auto;
}

.day-time-slot {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    min-height: 80px;
    position: relative;
}

.day-time-label {
    width: 80px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.day-event {
    margin-left: 20px;
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Event Panel */
.event-panel {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.panel-header h3 {
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.event-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-info {
    flex: 1;
}

.event-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.event-time {
    font-size: 12px;
    color: #64748b;
}

.event-actions {
    display: flex;
    gap: 8px;
}

.event-actions button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.edit-btn {
    background: #10b981;
    color: white;
}

.edit-btn:hover {
    background: #059669;
}

.delete-btn {
    background: #ef4444;
    color: white;
}

.delete-btn:hover {
    background: #dc2626;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1041;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.modal-header h3 {
    font-size: 24px;
    color: #1e293b;
    font-weight: 600;
}

.modal-close {
    width: 35px;
    height: 35px;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ef4444;
    color: white;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.color-picker {
    display: flex;
    gap: 10px;
}

.color-picker input[type="radio"] {
    display: none;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-picker input[type="radio"]:checked + .color-option {
    border-color: #1e293b;
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: #64748b;
    font-size: 14px;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #764ba2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        /* margin: 10px; */
        /* padding: 15px; */
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .current-month {
        font-size: 24px;
    }
    
    .calendar-day {
        min-height: 80px;
        padding: 8px;
    }
    
    .day-number {
        font-size: 14px;
    }
    
    .event-dot {
        font-size: 9px;
        padding: 1px 3px;
    }
    
    .week-header,
    .week-grid {
        grid-template-columns: 60px repeat(7, 1fr);
    }
    
    .time-column,
    .day-column {
        padding: 10px;
        font-size: 12px;
    }
    
    .time-slot {
        padding: 8px;
        min-height: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
}

@media(max-width:500px) {
    .form_box {
        width: 350px !important;
    }
}

/* Drag and Drop Styles */
.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.drop-zone {
    background: #f0f9ff;
    border: 2px dashed #0ea5e9;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media(max-width:400px) {
    .tabbox_button {
        justify-content: space-between;
    }
}
.calendar-day,
.event-item {
    animation: fadeIn 0.3s ease;
}
.logout_box {
    /* width: 100px; */
    background-color: #fff;
    padding: 10px 40px 10px 15px;
    border-radius: 6px;
    position: absolute;
    top: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.logout_box i {
    margin-right: 5px;
}