.table-pagination ul.pagination {
    list-style: none;         /* Remove bullet points */
    padding-left: 0;
    display: flex;            /* Force horizontal alignment */
    gap: 6px;                 /* Optional: space between items */
    justify-content: right; /* Center the pagination */
    align-items: center;
}

.table-pagination li.page-item {
    display: inline-block;    /* Ensure horizontal layout */
}

.table-pagination .page-link {
    border-radius: 0.375rem;
    padding: 0.4rem 0.75rem;
    color: #0d6efd;
    border: 1px solid #dee2e6;
}

.table-pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}
.sidebar,
.sidebar .sidebar-content {
    background-color: #1d4593 !important; /* Royal Purple */
}

.sidebar-link, a.sidebar-link {
    background: none !important;
    color: #FFFFFF; /* White text */
}

.sidebar-dropdown-item {
    padding-left: 10%;
}
.sidebar-item.active > .sidebar-link {
    background-color: #FFFFFF !important;
    color: #000000b5 !important;
    font-weight: 600;
}

.sidebar-submenu .sidebar-item.active > .sidebar-link {
    background-color: #b4afbd !important;
    color: #fff !important;
    font-weight: 600;
}


fieldset {
    padding: 20px !important;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.125);
    background-color: #f0f1f6;
    margin-bottom: 15px;
}
/* legend {
    margin: 0px !important;
    width: auto;
    color: #001737;
    padding: 0px 10px;
    font-family: "nunito-regular", sans-serif;
    font-size: 1rem;
    font-weight: 600;
} */
.sidebar-submenu {
    padding-left: 20px;
    list-style: none;
}

.sidebar-submenu .sidebar-item {
    margin-bottom: 5px;
}

.sidebar-submenu .sidebar-link {
    font-size: 0.9rem;
    padding-left: 35px;
    display: block;
    color: #fff;
}

.sidebar-submenu .sidebar-link:hover {
    color: #fff;
}

.sidebar-submenu .sidebar-item.active > .sidebar-link {
    color: #fff;
    font-weight: 600;
}
.tag-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tag-button {
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-button.selected {
    background-color: #5c27fe;
    color: white;
    border-color: #5c27fe;
}

.tag-button:hover {
    background-color: #5c27fe;
    color: white;
    border-color: #5c27fe;
}

.sidebar-toggle {
  margin-left: 1rem;
}

/* notification */
.unread-row td {
    background-color: #e9ecef !important; /* Bootstrap-like grey */
}
.cke_notification_warning{
    display: none !important;
}
.sidebar-noti-badge {
    position: absolute;
    top: 12px;
    right: 20px;
    background: #ff3b30;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 50%;
    font-weight: bold;
}

.ping-anim {
    animation: sidebarPing 1.2s infinite ease-in-out;
}

@keyframes sidebarPing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(1);
    }
}

.sidebar-brand img {
    width: 100%;
    height: 69px;
    object-fit: contain;
}


