#navigation.app-header {
    background: var(--card-bg);
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, .05);
    border-bottom: 1px solid var(--border);
    z-index: 1039;
}

.app-wrapper-login .app-content {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-wrapper-login .bg-video {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
}
.help-block{
    color: red;
    font-style: italic;
}

.app-wrapper-login .bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-wrapper-login .bg-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(253, 253, 254, 0.4);
    backdrop-filter: blur(12px);
}

.app-wrapper-login .site-login {
    background: hsla(0,0%,100%,.7);
    border-radius: .375em;
    max-width: 450px;
    margin: auto;
    box-shadow: 0px 0px 14px 4px rgba(0,0,0,.05);
    overflow: hidden;
    backdrop-filter: blur(100px);
}

.app-wrapper-login .site-login .card-header {
    padding: 1.875rem;
    background: #fdfeff10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-wrapper-login .site-login .card-body {
    padding: 1rem;
}
.app-wrapper-login .site-login .card-header img {
    width: 100%;
    height: auto;
}

.login-card .card-header{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
}
.app-wrapper .card {
    border: none;
    box-shadow: 0px 0px 14px 4px rgba(0, 0, 0, .05);
    background: var(--card-bg);
}

.app-wrapper .card .card-header {
    border-bottom: 1px solid var(--border);
}


.in-card {
    border: 1px solid var(--border);
    border-radius: .375em;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.in-card .in-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
}
.in-card .in-card-header .btn {
    background: var(--btn-bg);
    border: none;
    box-shadow: none;
    width: 2rem;
    height: 2rem;
    transition: all .15s linear;
}
.in-card .in-card-header .btn .fa-ellipsis-vertical {
    color: #1a3180;
    transition: all .15s linear;
}
.in-card .in-card-header .dropdown-menu {
    overflow: hidden;
    padding: 0;
    border: none;
}
.in-card .in-card-header .dropdown-menu .dropdown-item {
    padding: .5rem .9375rem;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.in-card .in-card-body {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.in-card .in-card-body img {
    width: auto;
    background: var(--light-gray);
}

.flex-end{
    display: flex;
    justify-content: end;
    gap: 20px;
}

/* **** START Paginatie ************

/* Containerul listei */
.pagination {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 20px 0;
    font-family: 'Open Sans', sans-serif; /* Sau fontul folosit în dashboard */
    font-size: 14px;
}

/* Elementele listei (li) */
.pagination li {
    margin-right: 5px; /* Spațiu mic între butoane */
}

/* Link-urile și Span-urile (Butonul propriu-zis) */
.pagination li a,
.pagination li span {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #555; /* Gri închis pentru text normal */
    background-color: #fff;
    border: 1px solid #dee2e6; /* Gri deschis, ca bordurile tabelului */
    border-radius: 4px; /* Colțuri ușor rotunjite */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Starea HOVER (când treci cu mouse-ul) */
.pagination li a:hover {
    color: #ff5b5b; /* Roșul din tema ta */
    border-color: #ff5b5b;
    background-color: #fff5f5; /* Un roșu foarte pal pe fundal */
}

/* Starea ACTIVE (pagina curentă) */
.pagination li.active a,
.pagination li.active span {
    background-color: #ff5b5b; /* Roșul din tema ta */
    color: #fff; /* Text alb */
    border-color: #ff5b5b;
    cursor: default;
}

/* Starea DISABLED (buton inactiv, ex: Prev/Next când nu sunt pagini) */
.pagination li.disabled span,
.pagination li.disabled a {
    color: #aaa;
    background-color: #f9f9f9;
    border-color: #eee;
    cursor: not-allowed;
    pointer-events: none; /* Previne click-ul */
}

/* Ajustare pentru săgeți (Prev/Next) */
.pagination li.prev span,
.pagination li.next a {
    font-weight: bold;
}

/* ****** END Paginatie ************