ul.admin-app-menu {
    list-style-type: none;
    margin: 0;
    padding: 8px 16px;
    width: 200px;
    background-color: #f1f1f1;
}

ul.admin-app-menu li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

/* Change the link color on hover */
ul.admin-app-menu li a:hover {
    background-color: #555;
    color: white;
}

.help-block {
    color: red;
}



.report-type-input {
    height: 3rem !important;
}

.events-by-calendar-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 600px;
    max-width: 600px;
}

.events-by-calendar-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.events-by-calendar-form .form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 10px 12px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.events-by-calendar-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.events-by-calendar-form .btn-primary {
    padding: 10px 20px;
    font-weight: 600;
}

.events-table thead th{
    background-color: #395870 !important;
    padding: 12px 15px !important;
    height: 0px !important;
    color: white !important;
    border: none !important;
    text-align: center !important;
}

.events-table tbody tr{
    align-items: center;
    font-size: 17px;
}

.events-table tbody td{
    text-align: left;
    padding: 10px;
    white-space: nowrap;
}

.event-name-cell {
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
    position: relative;
}

.event-name-cell:hover {
    background-color: #f8f9fa;
}

.events-table th{
    white-space: nowrap;
}

.events-table {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 10px;
    width: 100% !important;
}

th:first-of-type {
    border-top-left-radius: 10px;   
}

th:last-of-type {
    border-top-right-radius: 10px;
}

.events-table tbody tr:first-of-type {
    border-bottom-left-radius: 10px;    
}

tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10px;
}

tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 10px;
}

.events-table tbody tr:nth-child(even){
    background-color: rgb(203, 203, 203);
}


.table-container {
    min-width: calc(100vw - 260px);
    max-width: calc(100vw - 260px);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .table-container {
        max-width: calc(100vw - 70px);
    }
}

.nav-tabs .nav-link {
    color: #495057 !important;
    border: 1px solid transparent !important;
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500 !important;
}

.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6 !important;
    color: #007bff !important;
}

.nav-tabs .nav-link.active {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff !important;
    font-weight: 600 !important;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6 !important;
    margin-bottom: 1rem !important;
}

/* Empty state message styling */
.empty-state {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.empty-state p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.empty-state i {
    font-size: 24px;
    color: #adb5bd;
    margin-right: 10px;
}
