@font-face {
    font-family: "Montserrat";
    src: url("../../fonts/Montserrat-Italic-VariableFont_wght.ttf")
        format("ttf-variations");
    src: url("../../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: "MTN Brighter Sans Regular";
    src: url("../../fonts/MTN\ Brighter\ Sans\ Regular.ttf") format("truetype");
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: "MTN Brighter Sans Bold";
    src: url("../../fonts/MTN\ Brighter\ Sans\ Bold.ttf") format("truetype");
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

:root {
    --primary-color: #ffcc00;
    --thick-yellow: #c59d00;
    --text-color: #363636;
    --grey-color: #b3b3b3;
    --label-color: #545f71;
    --sidebar-color: #faebad;
    --creamWhite: #f9f9f9;
    --text-error: #ff0a0a;
    --font-sans-regular: "MTN Brighter Sans Regular";
    --font-sans-bold: "MTN Brighter Sans Bold";
    --font-family: "Montserrat";
}

* {
    font-family: var(--font-sans-regular);
    padding: 0;
    margin: 0;
}

/* ======================== LOGIN SCREEN =================== */

.login-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    height: 100vh;
}

.man-frame {
    border-radius: 12px;
}

/* Login left section */
.login-container .left-section {
    width: 40%;
    padding: 0 2rem;
    overflow-y: scroll;
}

.login-container .left-section::-webkit-scrollbar {
    width: 3px;
    height: 12px;
}

.login-container .left-section::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
}

.login-container .left-section::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

.login-container .left-section .mtnlogo {
    margin-bottom: 3rem;
}

.login-container .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.login-container .logo-container .sign-in {
    line-height: 1px;
}

.login-container .logo-container .sign-in h1 {
    font-style: normal;
    font-weight: normal;
}

.login-container .logo-container .sign-in p {
    color: var(--thick-yellow);
}

.login-container .logo-container .sign-in p a {
    font-family: var(--font-sans-bold);
    text-decoration: none;
    color: var(--thick-yellow);
}

.login-container form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.login-container form .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #545f71;
}

.login-container form .form-group .required {
    color: var(--text-error);
}

.login-container form .form-group .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #545f71;
    border-radius: 5px;
    padding: 8px;
    background: #fff;
    gap: 0.5rem;
}

.login-container form .form-group .input-group input {
    border: none;
    outline: none;
    flex: 1;
    color: #545f71;
}

.login-container form .form-group .input-group svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #545f71;
}

.login-container form .form-group .toggle-password {
    cursor: pointer;
}

.login-container form .remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2rem;
}

.login-container form .remember-me input {
    width: 16px;
    height: 16px;
}

.login-container form .remember-me label {
    color: #545f71;
}

.login-container form .remember-me input[type="checkbox"] {
    accent-color: var(--primary-color);
    color: white !important;
}

.login-container form .submit-btn {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.login-container form .submit-btn a {
    font-family: var(--font-sans-bold);
    text-decoration: none;
    color: var(--thick-yellow);
}

.login-container form .login-btn {
    padding: 10px 35px;
    background-color: var(--text-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* login right section */
.login-container .right-section {
    height: 100%;
    width: 60%;
}

.login-container .right-section img {
    height: 100%;
    width: 100%;
}

/* login mobile view */
@media screen and (max-width: 1000px) {
    .login-container .left-section {
        width: 100%;
        padding: 1rem;
        overflow-y: scroll;
    }

    .login-container .right-section {
        display: none;
    }

    .login-container form .form-group {
        margin-bottom: 2.5rem;
        position: relative;
    }

    .login-container form .remember-me {
        margin-bottom: 3.5rem;
    }

    .login-container form .submit-btn {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
}

@media screen and (max-width: 530px) {
    .login-container .logo-container .sign-in {
        line-height: 17px;
    }

    .login-container form .submit-btn {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .login-container form .login-btn {
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .login-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem;
        height: 100%;
    }

    .login-container .left-section {
        width: 100%;
        padding: 1rem;
        overflow-y: hidden;
    }
}

/* ======================== OTP SCREEN =================== */
.login-container .otp-form {
    display: flex;
    flex-direction: column;
    margin-top: 8rem;
    padding: 1rem;
}

.login-container .otp-form .otp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-container .otp-form .otp-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 5px;
}

.login-container .otp-form .otp-box {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 18px;
    border: 1px solid var(--grey-color);
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

.login-container .otp-form .otp-box:focus {
    border-color: var(--primary-color);
}

.login-container .otp-form .otp-btn .login-btn {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.required {
    color: red;
}

/* ======================== FORGOT PASSWORD SCREEN =================== */
.login-container .password-form {
    display: flex;
    flex-direction: column;
    margin-top: 8rem;
}

.login-container .password-container {
    width: 100%;
}

.login-container .password-form .password-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #545f71;
}

.login-container .password-form .password-container .required {
    color: var(--text-error);
}

.login-container .password-form .password-container .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #545f71;
    border-radius: 5px;
    padding: 8px;
    background: #fff;
    gap: 0.5rem;
}

.login-container .password-form .password-container .input-group svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #545f71;
}

.login-container .password-form .password-container .input-group input {
    border: none;
    outline: none;
    flex: 1;
    color: #545f71;
}

.login-container .password-form .login-btn {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

@media screen and (max-width: 1000px) {
    .login-container .password-form {
        width: 100%;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .login-container .password-container {
        width: 100%;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .login-container .password-form .submit-btn {
        margin-top: 0;
    }

    .login-container .password-form .login-btn {
        margin-top: 0;
    }
}

/* ======================== SIGNUP SCREEN =================== */
.signin-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    height: 100vh;
}

/* signin left section */
.signin-container .left-section {
    width: 40%;
    height: 100%;
}

.signin-container .left-section img {
    height: 100%;
    width: 100%;
}

.signin-container .right-section {
    width: 60%;
    overflow-y: scroll;
    padding: 0 1rem;
}

.signin-container .right-section::-webkit-scrollbar {
    width: 3px;
    height: 12px;
}

.signin-container .right-section::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
}

.signin-container .right-section::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

.signin-container .right-section .mtnlogo {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.signin-container .right-section .signin-section {
    padding: 2rem;
}

.signin-container .right-section .signin-section .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.signin-container .right-section .signin-section .logo-container .sign-in {
    line-height: 1px;
}

.signin-container .right-section .signin-section .logo-container .sign-in h1 {
    font-style: normal;
    font-weight: normal;
}

.signin-container .right-section .signin-section .logo-container .sign-in p {
    color: var(--thick-yellow);
}

.signin-container .right-section .signin-section .logo-container .sign-in p a {
    font-family: var(--font-sans-bold);
    text-decoration: none;
    color: var(--thick-yellow);
}

.signin-container .right-section .signin-section .form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.signin-container .right-section .signin-section .form-row .form-group {
    width: 50%;
    margin-bottom: 1.5rem;
    position: relative;
}

.signin-container .right-section .signin-section .form-row .password-group {
    width: 100%;
}

.signin-container .right-section .signin-section .form-row .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #545f71;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .form-group
    .required {
    color: var(--text-error);
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .form-group
    .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #545f71;
    border-radius: 5px;
    padding: 8px;
    background: #fff;
    gap: 0.5rem;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .form-group
    .input-group
    svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #545f71;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .form-group
    .input-group
    input {
    border: none;
    outline: none;
    flex: 1;
    color: #545f71;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .description-container {
    width: 70%;
    margin-bottom: 1rem;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .description-container
    textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #545f71;
    border-radius: 5px;
    resize: none;
    outline: none;
    color: #545f71;
}

.signin-container .right-section .signin-section .form-row .upload-container {
    width: 30%;
    margin-bottom: 1rem;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .upload-container
    .upload-box {
    height: 100px;
    border: 1px solid #545f71;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .upload-container
    .upload-box
    button {
    background-color: var(--primary-color);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .upload-container
    .upload-box
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.signin-container
    .right-section
    .signin-section
    .form-row
    .password-group
    .toggle-password {
    cursor: pointer;
}

.signin-container .right-section .signin-section .remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2rem;
}

.signin-container .right-section .signin-section .remember-me input {
    width: 16px;
    height: 16px;
}

.signin-container
    .right-section
    .signin-section
    .remember-me
    input[type="checkbox"] {
    accent-color: var(--primary-color);
    color: white !important;
}

.signin-container
    .right-section
    .signin-section
    .remember-me
    label[type="checkbox"] {
    color: #545f71;
}

.signin-container .right-section .signin-section .submit-btn {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.signin-container .right-section .signin-section .submit-btn a {
    font-family: var(--font-sans-bold);
    text-decoration: none;
    color: var(--thick-yellow);
}

.signin-container .right-section .signin-section .login-btn {
    padding: 10px 35px;
    background-color: var(--text-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

@media screen and (max-width: 970px) {
    .signin-container .left-section {
        display: none;
    }

    .signin-container .right-section {
        width: 100%;
        overflow-y: scroll;
        padding: 0 1rem;
    }

    .signin-container .right-section .signin-section {
        padding: 1rem;
    }
}

@media screen and (max-width: 610px) {
    .signin-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem;
        height: 100%;
    }

    .app-logo img {
        height: 80px;
        width: 80px;
    }

    .signin-container .right-section .signin-section .form-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .signin-container .right-section .signin-section .logo-container .sign-in {
        line-height: 17px;
    }

    .signin-container .right-section .signin-section .form-row {
        margin-bottom: 1rem;
    }

    .signin-container .right-section .signin-section .form-row .form-group {
        width: 100%;
        margin-bottom: 0.5rem;
        position: relative;
    }

    .signin-container .right-section .signin-section {
        padding: 0.5rem;
    }

    .signin-container .right-section {
        width: 100%;
        overflow-y: hidden;
        padding: 0.5rem;
    }

    .signin-container
        .right-section
        .signin-section
        .form-row
        .description-container {
        width: 100%;
        margin-bottom: 0;
    }

    .signin-container .right-section .signin-section .submit-btn {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .signin-container .right-section .signin-section .login-btn {
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }
}

/* ============================= Dashboard || sidebar | header ============================== */
.app-container {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(90deg, #ffcb0540 5%, #f8f3e010);
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    width: 20%;
}

@media screen and (max-width: 768px) {
    .app-sidebar {
        display: none;
    }

    .app-container {
        width: 100%;
        padding: 0.5rem;
    }
}

.app-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    overflow-y: scroll;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .app-content {
        width: 100%;
    }
}

/* Dashboard Sidebar */
.sidebar {
    display: flex;
    background-color: var(--primary-color);
    border-radius: 14px;
    height: 100vh;
    overflow-y: scroll;
    position: relative;
    border: 1.5px solid var(--text-color);
}

.sidebar::-webkit-scrollbar {
    height: 8px;
    width: 1px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--grey-color);
    border-radius: 50px;
}

.sidebar.close {
    transition: all 0.8s ease;
    width: fit-content;
    padding: 10px;
}

.show-content {
    transition: all 0.8s ease;
    width: 100% !important;
}

.show-sidebar {
    transition: all 0.8s ease;
    width: fit-content;
}

.sidebar.close .icon-sidebar {
    transition: all 0.8s ease;
    width: 100%;
}

.open-side-icon {
    display: none;
}

#menu-close-btn {
    cursor: pointer;
    height: 15px;
    width: 15px;
}

.sidebar.close .open-side-icon {
    display: block;
}

.open-side-icon:hover {
    cursor: pointer;
}

/* Icon sidebar styles */
.icon-sidebar {
    width: 30%;
    padding: 1rem 0;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.open-side-icon {
    transform: rotate(180deg);
    position: absolute;
    right: 0;
    top: 50px;
}

.icon-sidebar .app-logo {
    margin-bottom: 2rem;
}

.icon-sidebar .app-logo img {
    height: 60px;
}

.sidebar.close .icon-sidebar .app-logo img {
    height: 50px;
}

.icon-sidebar .nav-icon-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-sidebar .nav-icon-list li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    height: 40px;
    width: 50px;
}

.icon-sidebar > .nav-icon-list > p,
.text-sidebar > .nav-text-list > p {
    height: 18px !important;
    margin-top: 20px !important;
    margin-bottom: 0px !important;
    font-weight: 10000 !important;
}

.icon-sidebar .nav-icon-list li.active-nav-item {
    background-color: var(--text-color);
    border-radius: 7px;
}

.icon-sidebar .nav-icon-list li.active-nav-item a {
    color: #fff;
}

.icon-sidebar .nav-icon-list li a {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

/* Text sidebar styles */
.text-sidebar {
    width: 70%;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 1rem 0;
    height: fit-content;
}

.text-sidebar.hide {
    display: none;
    background-color: transparent;
}

.text-sidebar .app-text {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
    height: 60px;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.text-sidebar .nav-text-list {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
}

.text-sidebar .nav-text-list a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: center !important;
    margin-bottom: 0.5rem;
    height: 40px;
}

.text-sidebar .nav-text-list a li {
    list-style: none;
    gap: 1rem;
    display: flex;
    align-items: center !important;
    justify-content: space-between !important;
}

.text-sidebar .nav-text-list a.active-nav-item {
    background-image: linear-gradient(to right, #ffffff10, #79797950);
    border-right: 8px solid var(--primary-color);
}

.text-sidebar .nav-text-list a.active-nav-item p {
    font-family: var(--font-sans-bold);
    font-size: 11px;
}

.text-sidebar .nav-text-list a li p {
    margin-bottom: 0;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

@media screen and (max-width: 1300px) {
    .text-sidebar .nav-text-list a li p {
        margin-bottom: 0;
        font-size: 10px;
        text-align: center;
        color: var(--text-color);
    }
}

.text-sidebar .nav-section-divider {
    font-size: 10px;
    margin-bottom: 0;
    text-align: center;
    color: var(--grey-color);
}

/* Navbar */
nav {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: space-between;
    border-bottom: 1px solid var(--text-color);
    margin: 1rem;
    padding-bottom: 1rem;
}

nav .header-left {
    display: flex;
    align-items: center;
    gap: 5rem;
}

@media screen and (max-width: 768px) {
    nav {
        margin: 0;
        padding-bottom: 1rem;
    }
}

nav .header-left .title-message {
    line-height: 13px;
}

nav .header-left .title-message p {
    color: #c59d00;
}

nav .header-left .title-message span {
    font-size: 40px;
    color: #000;
}

@media screen and (max-width: 768px) {
    nav .header-left .title-message span {
        font-size: 20px;
        color: #000;
    }
}

nav .header-left .title-message .subtitle {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    gap: 0.5rem;
}

nav .header-left .title-message .subtitle .active-subtitle {
    font-family: var(--font-sans-bold);
    text-decoration: underline;
}

nav .header-left .search-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav .header-left .search-container input {
    border: none;
    outline: none;
    background-color: transparent;
}

nav .header-left .search-container input::placeholder {
    color: var(--text-color);
}

nav .header-right {
    display: flex;
    gap: 12px;
    color: #c59d00;
    align-items: center;
}

/* ============================= Dashboard || Pulisher | dashboard ============================== */

/* Counter card section */
.counter-cards {
    display: grid;
    margin: 1rem 0;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .counter-cards {
        display: grid !important;
        grid-template-columns: auto !important;
        margin-bottom: 2rem;
        gap: 10px !important;
    }
}

.counter-card {
    background-color: var(--creamWhite);
    border-radius: 20px;
    border: 3px solid #fff;
    padding: 1rem;
    flex-grow: 1;
}

.counter-card:hover {
    cursor: pointer;
    background-color: var(--primary-color);
    transform: rotate(-5deg);
    transition: all 0.5s ease;
}

.counter-card:hover svg {
    color: #fff;
}

.counter-card .top-card {
    display: flex;
    line-height: 10px;
    justify-content: space-between;
}

.counter-card .top-card .card-top-text .title {
    font-size: 12px;
    font-weight: 800;
}

.counter-card .top-card .card-top-text .title:hover {
    font-family: var(--font-sans-bold);
}

.counter-card .top-card .card-top-text .count {
    font-size: 27.5px;
    font-weight: 800;
}

.top-card svg {
    color: #9ba5b7;
}

.bottom-card {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-card p {
    font-size: 8px;
    color: #606060;
}
/* End of counter card section */

/* Charts section */
.charts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bar-chart {
    width: 68%;
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 10px;
    border: 3px solid #fff;
}

.bar-chart .title-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 10px;
}

.bar-chart .title-header .title {
    margin-bottom: 0;
}

.bar-chart .title-header select {
    padding: 10px;
    border: 2px solid var(--text-color);
    border-radius: 10px;
    background-color: transparent;
    outline: none;
}

.doughnut-chart {
    width: 30%;
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 10px;
    border: 3px solid #fff;
}

@media screen and (max-width: 768px) {
    .charts {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .bar-chart {
        width: 100%;
    }

    .doughnut-chart {
        width: 100%;
    }

    .doughnut-chart .title {
        font-size: 15px;
    }
}

.doughnut-chart .title {
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-sans-bold);
    padding: 1rem 0;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 10px;
    color: #363636;
}
/* End of chart section */

/* Data Tables */

.dataTables_paginate {
    display: flex;
    justify-content: end;
}

.dataTables_filter {
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 768px) {
    .dataTables_filter {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
    }

    .dt-buttons.btn-group.flex-wrap {
        position: relative !important;
        top: 0;
        margin-top: 0;
    }

    .dataTables_wrapper.dt-bootstrap5.no-footer {
        position: relative;
        padding: 1rem;
    }
}

.dt-buttons {
    display: flex;
    margin-top: 20px;
    gap: 1px;
}

.dt-buttons > button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.35rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.84615385;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: var(--primary-color);
    border-color: #e2e6ea;
    text-decoration: none;
    color: #fff;
    margin: 0px 0.2rem;
}

.pagination {
    list-style: none;
}

.page-item.active .page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.pagination > li {
    padding: 10px;
    text-decoration: none;
}

.paginate_button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    line-height: 1;
    border-radius: 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #fff;
    border-color: #e2e6ea;
    text-decoration: none;
}

.paginate_button > a {
    text-decoration: none;
    color: #000000;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dataTables_info {
    margin-top: 10px;
}

table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    margin-top: 15px;
    color: var(--textBlackColor);
    font-size: 11px;
    overflow-x: scroll;
    /* -ms-overflow-style: none;
    scrollbar-width: none; */
}

.view-users-section {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem !important;
    border: 3px solid #fff;
    margin-top: 1rem;
}

.manage-catolg {
    margin-top: 2rem;
}

.view-users-section .title {
    margin: 1.5rem 10px;
}

.view-users-section::-webkit-scrollbar {
    display: none;
}

.view-users-section table thead tr th {
    font-size: 9px;
    color: #667085;
    background-color: white;
    padding: 10px;
    border-bottom: 1px solid #161616;
}

.view-users-section table thead tr th div {
    display: flex;
    align-items: center;
}
.view-users-section table thead tr th div p {
    display: flex;
    margin-bottom: 0 !important;
}

.view-users-section table thead tr th div p {
    margin-right: 4px;
}

.view-users-section table tbody tr td {
    padding: 10px;
    border-bottom: 1px solid #161616;
}

.view-users-section table tbody tr td:nth-child(2) {
    background-color: #ffffff63;
}

.view-users-section table tbody tr td .action {
    display: flex;
    gap: 8px;
}

.view-users-section table tbody tr td .action .action-icon {
    border: 1.5px solid var(--yellow);
    background-color: transparent;
}

.view-users-section table tbody tr td .action .action-icon:hover {
    cursor: pointer;
}

.view-users-section table tbody tr td input[type="checkbox"] {
    accent-color: var(--yellow);
}

.view-users-section table tbody tr td img {
    width: 38.5px;
    height: 47px;
}

.view-users-section table tbody tr td .status {
    width: fit-content;
    padding: 2px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.view-users-section table tbody tr .successful {
    background-color: #2aa8d7;
    color: var(--white);
}

.view-users-section table tbody tr .rejected {
    background-color: #e49191;
    color: var(--white);
}

/* ============================= Dashboard || Pulisher | Publications ============================== */
.tab-container {
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #f9f9f980;
    border: 3px solid white;
    padding: 10px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .tab-container {
        margin-top: 1rem;
    }
}

.tab-switch {
    display: flex;
    background-color: white;
    padding: 3px;
    border-radius: 10px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    font-family: var(--font-sans-regular);
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 10px;
}

.tab-btn .item_name {
    font-family: var(--font-sans-regular);
    text-align: center;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: black;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.publication-container {
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    border: 3px solid #fff;
}

@media screen and (max-width: 768px) {
    .publication-container {
        margin-top: 1rem;
    }
}

.publication-container .publication-content {
    display: flex;
    gap: 2rem;
}

.publication-container .publication-content .right {
    display: flex;
    flex-direction: column;
    width: 70%;
}

@media screen and (max-width: 768px) {
    .publication-container .publication-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .publication-container .publication-content .right {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

.publication-container .publication-content .right .input-field {
    margin-bottom: 1rem;
}

.publication-container .publication-content .right .input-field label {
    color: var(--label-color);
}

.publication-container .publication-content .right .input-field label span {
    color: var(--text-error);
}

.publication-container
    .publication-content
    .right
    .input-field
    .input-text-field {
    border: 1px solid var(--label-color);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.publication-container
    .publication-content
    .right
    .input-field
    .message
    textarea {
    height: 140px;
    border-radius: 10px;
    color: var(--text-color);
    padding: 1rem;
    outline: none;
    background-color: transparent;
    width: 100%;
    border: 1px solid var(--label-color);
}

.publication-container
    .publication-content
    .right
    .input-field
    .input-text-field
    input {
    width: 100%;

    border: none;
    color: var(--text-color);
    outline: none;
    background-color: transparent;
}

.publication-container .publication-content .publication-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.publication-container .publication-content .publication-type .price-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .publication-container .publication-content .publication-type {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .publication-container
        .publication-content
        .publication-type
        .price-container {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .publication-container
        .publication-content
        .publication-type
        .input-field-author {
        width: 100% !important;
    }
}

.publication-container
    .publication-content
    .publication-type
    .price-container
    .required {
    color: red;
}

.publication-container
    .publication-content
    .publication-type
    .price-container
    .toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.publication-container
    .publication-content
    .publication-type
    .price-container
    .toggle-wrapper
    .toggle-btn {
    padding: 4px 30px;
    border: 1px solid var(--grey-color);
    border-radius: 17px;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-sans-bold);
    background-color: white;
    color: black;
    transition: 0.3s;
    outline: none;
}

.publication-container
    .publication-content
    .publication-type
    .price-container
    .toggle-wrapper
    .toggle-btn.paid {
    background-color: var(--primary-color);
    color: white;
    outline: none;
}

.publication-container
    .publication-content
    .publication-type
    .price-container
    .toggle-wrapper
    input {
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #eee;
    outline: none;
}

.publication-container
    .publication-content
    .publication-type
    .price-container
    .toggle-wrapper
    input:enabled {
    background-color: white;
    cursor: text;
    outline: none;
}

.publication-container
    .publication-content
    .publication-type
    .input-field-author {
    width: 100%;
}

.publication-container
    .publication-content
    .publication-type
    .input-field-author
    label {
    color: var(--label-color);
}

.publication-container
    .publication-content
    .publication-type
    .input-field-author
    .input-text-field {
    border: 1px solid var(--label-color);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.publication-container
    .publication-content
    .publication-type
    .input-field-author
    .input-text-field
    input {
    width: 100%;
    border: none;
    color: var(--text-color);
    outline: none;
    background-color: transparent;
}

.file-upload-container {
    text-align: center;
    width: 100%;
}

.file-drop-area {
    border: 3px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.file-drop-area:hover {
    border-color: var(--primary-color);
}

.upload-icon {
    font-size: 30px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.upload-text {
    color: #666;
}

.select-file-btn {
    background-color: white;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
}

.select-file-btn:hover {
    background-color: #f8f8f8;
}

.file-name {
    font-size: 14px;
    color: #333;
}

.publication-container .publication-content .right .upload-btn {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 3rem;
    justify-content: flex-end;
}

.publication-container .publication-content .right .upload-btn button {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

.publication-container .publication-content .right .upload-btn .btn-upload {
    border-radius: 7px;
    padding: 5px 20px;
    cursor: pointer;
    border: 1px solid var(--text-color);
}

.publication-container .publication-content .left {
    display: flex;
    flex-direction: column;
    width: 30%;
}

@media screen and (max-width: 768px) {
    .publication-container .publication-content .left {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}

.publication-container .publication-content .left .bg-color {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    background: #dddddd;
    border-radius: 11px;
    height: 100%;
}

/* ============================= Dashboard || Pulisher | Post ============================== */
.post-container {
    padding: 1rem;
}

.post-container .post-content {
    display: flex;
    flex-direction: column;
}

.post-container .post-content .top-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.post-container .post-content .top-section .wrapper-container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    border: 3px solid #fff;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .post-container .post-content .top-section .wrapper-container {
        display: grid;
        grid-template-columns: auto;
    }

}

.input-field.category-input-field{
    flex-basis: 100%;
}

.post-container .post-content .top-section .input-field {
    margin-bottom: 1rem;
}

.post-container .post-content .top-section .input-field label {
    color: var(--label-color);
}

.post-container .post-content .top-section .input-field label span {
    color: var(--text-error);
}

.post-container .post-content .top-section .input-field .input-text-field {
    border: 1px solid var(--label-color);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-container .post-content .top-section .input-field .message textarea {
    height: 140px;
    border-radius: 10px;
    color: var(--text-color);
    padding: 1rem;
    outline: none;
    background-color: transparent;
    width: 100%;
    border: 1px solid var(--label-color);
}

.post-container
    .post-content
    .top-section
    .input-field
    .input-text-field
    input {
    width: 100%;
    border: none;
    color: var(--text-color);
    outline: none;
    background-color: transparent;
}

.post-container .post-content .price-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.post-container .post-content .price-container .required {
    color: red;
}

.post-container .post-content .price-container .toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-container .post-content .price-container .toggle-wrapper .toggle-btn {
    padding: 4px 30px;
    border: 1px solid var(--grey-color);
    border-radius: 17px;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-sans-bold);
    background-color: white;
    color: black;
    transition: 0.3s;
    outline: none;
}

.post-container
    .post-content
    .price-container
    .toggle-wrapper
    .toggle-btn.paid {
    background-color: var(--primary-color);
    color: white;
    outline: none;
}

.post-container .post-content .price-container .toggle-wrapper input {
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #eee;
    outline: none;
    width: 100%;
}

.post-container .post-content .price-container .toggle-wrapper input:enabled {
    background-color: white;
    cursor: text;
    outline: none;
}

.post-container .post-content .input-field-author {
    width: 100%;
}

.post-container .post-content .input-field-author label {
    color: var(--label-color);
}

.post-container .post-content .input-field-author .input-text-field {
    border: 1px solid var(--label-color);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-container .post-content .input-field-author .input-text-field input {
    width: 100%;
    border: none;
    color: var(--text-color);
    outline: none;
    background-color: transparent;
}

.post-container .post-content .upload-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    border: 3px solid #fff;
    margin-bottom: 1rem;
}

.file-upload-container {
    text-align: center;
    width: 100%;
}

.file-drop-area {
    border: 3px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.file-drop-area:hover {
    border-color: var(--primary-color);
}

.upload-icon {
    font-size: 30px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.upload-text {
    color: #666;
}

.select-file-btn {
    background-color: white;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
}

.select-file-btn:hover {
    background-color: #f8f8f8;
}

.file-name {
    font-size: 14px;
    color: #333;
}

.post-container .post-content .top-section .upload-btn {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* wysiwyg custom template */

.post-container .post-content .custom-container-template {
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    border: 3px solid #fff;
    margin-bottom: 1rem;
}

.template-container .title {
    font-size: 15px;
    padding: 10px;
    border-bottom: 1px solid var(--label-color);
}

.template-container-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 10px;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--label-color);
}

.template-container-header button,
.template-container-header select {
    padding: 10px 20px;
    border: 1px solid var(--label-color);
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.template-container-content {
    display: flex;
    flex-direction: column;
}

.template-container-content .created-input {
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text-color);
}

.template-container-content .created-img {
    width: 250px;
    height: 250px;
}

#imageInput {
    display: none;
    background-color: red;
}

.post-content .submit-btn {
    display: flex;
    align-items: center;
    background-color: var(--text-color);
    color: var(--primary-color);
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    gap: 10px;
    font-size: 17px;
    padding: 12px;
    justify-content: center;
}

/* ============================= Dashboard || Pulisher | Subscription ============================== */
.tab-content .config-pricing {
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 3px solid #fff;
}

.tab-content .config-pricing h2 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 1rem;
    font-family: var(--font-sans-regular);
}

.tab-content .config-pricing ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}
.tab-content .config-pricing ul li {
    list-style: none;
    width: 100%;
}

.tab-content .config-pricing ul li a {
    cursor: pointer;
}

.tab-content .config-pricing .pricing-input-group {
    display: flex;
    border: 1px solid #ccc;
    align-items: center;
    margin-bottom: 2rem;
    border-radius: 7px;
    gap: 1rem;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .tab-content .config-pricing .pricing-input-group {
        display: flex;
        flex-direction: column;
        border: 1px solid #ccc;
        align-items: start;
        margin-bottom: 2rem;
        border-radius: 7px;
        gap: 1rem;
        padding: 0;
        justify-content: start;
    }
}

.tab-content .config-pricing .pricing-input-group label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    padding: 13px;
    color: var(--text-color);
    border-radius: 7px 0 0 7px;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .tab-content .config-pricing .pricing-input-group label {
        width: 100% !important;
    }

    .tab-content .config-pricing .pricing-input-group .input-wrapper {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }
}

.tab-content .config-pricing .pricing-input-group label strong {
    font-family: var(--font-sans-bold);
}

.tab-content .config-pricing .pricing-input-group .input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
}

.tab-content .config-pricing .pricing-input-group .input-wrapper .icon {
    margin-right: 10px;
}

.tab-content .config-pricing .pricing-input-group .input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    padding: 5px;
    color: var(--text-color);
}

.tab-content .config-pricing .pricing-input-group .input-wrapper .currency {
    font-weight: bold;
    color: gray;
}

.tab-content .config-pricing .save-btn {
    background-color: var(--text-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.tab-content .discount-config {
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    border: 3px solid #fff;
}

.tab-content .discount-config h2 {
    color: #000000;
    font-size: 20px;
    font-family: var(--font-sans-regular);
}

.tab-content .discount-config p {
    color: var(--text-color);
    font-size: 12px;
    margin-bottom: 1rem;
}

.tab-content .discount-config .discount-input-group {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px dashed var(--grey-color);
    border-radius: 8px;
    justify-content: space-between;
}

.tab-content .discount-config .discount-input-group .discount-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-content
    .discount-config
    .discount-input-group
    .discount-container
    .input-group {
    display: flex;
    width: 150px;
    background-color: white;
    gap: 10px;
    padding: 2px;
    align-items: center;
    border-radius: 7px;
    border: 1px solid var(--grey-color);
}

.tab-content
    .discount-config
    .discount-input-group
    .discount-container
    .input-group
    input,
.tab-content
    .discount-config
    .discount-input-group
    .discount-container
    .discount
    input {
    width: 60%;
    border-radius: 7px;
    padding: 5px;
    outline: none;
    color: var(--text-color);
    border: 1px solid var(--grey-color);
    background-color: transparent;
}

.tab-content
    .discount-config
    .discount-input-group
    .discount-container
    #durationType {
    border-radius: 7px;
    padding: 5px;
    outline: none;
    color: var(--text-color);
    border: 1px solid var(--grey-color);
    background-color: transparent;
}

.tab-content
    .discount-config
    .discount-input-group
    .discount-container
    .input-group
    span {
    display: flex;
    font-family: var(--font-sans-bold);
}

.pricing-preview {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .pricing-preview {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.pricing-preview span select {
    border-radius: 7px;
    padding: 5px;
    outline: none;
    color: var(--text-color);
    border: 1px solid var(--grey-color);
    background-color: transparent;
}

.duration {
    border-radius: 7px;
    padding: 5px;
    outline: none;
    color: var(--text-color);
    border: 1px solid var(--grey-color);
    background-color: transparent;
}

.discount-config ul {
    margin-top: 2rem;
    max-height: 150px !important;
    overflow-y: scroll;
    padding-left: 0;
}

.discount-config li {
    background: #eeebeb;
    padding: 5px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.discount-config li .listed-element span,
.discount-config li .listed-element strong {
    font-family: var(--font-sans-bold);
    color: #000000;
}

.discount-config li .edit,
.discount-config li .delete {
    cursor: pointer;
}

.discount-config li .edit svg,
.discount-config li .delete svg {
    height: 20px;
    width: 20px;
}

.tab-content .preview-pricing {
    background-color: #f9f9f980;
    border-radius: 19px;
    padding: 1rem;
    margin-top: 1rem;
    border: 3px solid #fff;
}

.tab-content .preview-pricing h2 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 1rem;
    font-family: var(--font-sans-regular);
}

.tab-content .preview-pricing p {
    color: var(--text-color);
    font-size: 12px;
    margin-bottom: 1rem;
}

.nav-link.active {
    background-color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
}

/* Downloads Per User */

/* main section */
.main-cta {
    width: 100%;
    margin-bottom: 1rem;
    /* border: 1px solid red; */
}

.main-cta .tabs {
    display: flex;
    padding: 1.3rem 0 1rem 0;
    gap: 1rem;
    position: relative;
    overflow-x: scroll;
    width: 100%;
    /* border: 1px solid red; */
}

.main-cta .tabs::-webkit-scrollbar {
    height: 8px;
}

.main-cta .tabs::-webkit-scrollbar-thumb {
    background-color: var(--creamWhite);
    border-radius: 50px;
}

.tabs li {
    position: relative;
    min-width: 160px;
    list-style: none;
    border: 1.9px solid var(--white);
    padding: 0.7rem;
    background: rgba(249, 249, 249, 0.4);
    border-radius: 11px;
    box-shadow: 11px 11px 77.4px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(80.6px);
    box-sizing: border-box;
}

.tabs li span {
    text-decoration: none;
    color: var(--darkGray);
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 28px;
    display: flex;
    justify-content: center;
}

.tabs .active-item {
    background-color: var(--yellow);
}

/* downloads per user section */
.downloads {
    border: 1.9px solid var(--white);
    border-radius: 14px;
    box-sizing: border-box;
    display: flex;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.downloads::-webkit-scrollbar {
    display: none;
}

.downloads .downloads-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 0.5rem;
    border-bottom: 1px solid var(--black);
    /* border: 1px solid blue; */
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.downloads .downloads-header h1 {
    font-size: 25px;
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 500;
    /* border: 1px solid green; */
    padding: 4px;
}

.downloads .downloads-header-right {
    display: flex;
}

.dropdown {
    display: flex;
    margin-right: 1rem;
    /* border: 2px solid red; */
}

.dropdown p {
    color: #545f71;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    text-align: center;
    margin-right: 8px !important;
    margin: auto;
}

/* dropdown menu */
.select-menu .select-btn {
    display: flex;
    height: 35px;
    padding: 6px;
    /* color: #9ba5b7; */
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 22px;
    border: 1px solid #545f71;
    border-radius: 7px;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
    width: 150px;
    margin-bottom: 5px;
    margin: auto;
    background-color: transparent;
}

.select-btn:focus {
    outline: none;
}

.select-menu .options {
    position: relative;
    padding: 6px;
    border-radius: 7px;
    background-color: var(--white);
    display: none;
}

.select-menu.active .options {
    display: block;
}

.options .option {
    list-style: none;
    color: #9ba5b7;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    border-radius: 7px;
    padding: 0 12px;
    cursor: pointer;
}

.options .option:hover {
    background-color: #f2f2f2;
}

.search-btn {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 8px 10px;
    border-radius: 3px;
    height: 2.2rem;
    width: 5rem;
}

.search-btn:hover {
    cursor: pointer;
}

.search-btn p {
    font-size: 13px;
    margin: auto;
}

.search-btn {
    background-color: var(--darkGray);
    color: var(--yellow);
}
/* end of downloads section */

/* begin of filter-section */
.filter-entries {
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
}

.show-entries {
    display: flex;
    align-items: center;
}

.show-entries p {
    font-size: 9px;
    color: var(--darkGray);
    font-weight: 600;
}

.show-entries input {
    width: 40px;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--darkGray);
    border-radius: 3px;
    margin: 0 5px;
}

input[type="number"]::-webkit-inner-spin-button {
    opacity: 1;
}

.right .input-container {
    display: flex;
    border: 1px solid #363636;
    padding: 3px;
    gap: 4px;
    border-radius: 3px;
}

.filter-entries .filter-btns {
    display: flex;
    gap: 1.5rem;
}

.filter-search-bar {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 0 4px;
    border: 1px solid #545f71;
    border-radius: 7px;
}

.filter-search-bar input {
    flex: 1;
    height: 100%;
    border: none;
    background-color: transparent;
    padding: 0 2px;
}

.filter-search-bar input:focus {
    outline: none;
}

.btn {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 8px 10px;
    border-radius: 5px;
}

.btn:hover {
    cursor: pointer;
}

.btn p {
    font-size: 6px;
    margin: 0 2px;
}

.export-btn {
    border: 1px solid #d0d5dd;
}

/* table section */
table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    margin-top: 15px;
    color: var(--textBlackColor);
    font-size: 11px;
}

.downloads table thead tr th {
    font-size: 10px;
    color: #667085;
    background-color: white;
    padding: 18px;
    border-bottom: 1px solid #161616;
}

.downloads table thead tr th div {
    display: flex;
    align-items: center;
    /* gap: 3px; */
}

.downloads table tbody tr td {
    padding: 18px;
    border-bottom: 1px solid #161616;
}

.downloads table tbody tr td div {
    border: 1px solid var(--yellow);
    width: 25px;
    padding: 5px;
}

.downloads table tbody tr td div img {
    margin: auto;
    justify-content: center;
    display: flex;
}

.downloads .footer-table {
    padding: 1.5rem 1rem 1rem 0.6rem;
    /* background-color: red; */
    justify-content: space-between;
    display: flex;
}

.downloads .footer-table p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 12px;
    color: #667085;
    /* margin: auto; */
    display: flex;
    align-items: center;
}

/* pagination buttons */

*,
*::after,
*::before {
    box-sizing: border-box;
}

button {
    background: none;
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    border: none;
    cursor: pointer;
}

.page-btn {
    background: #ddd;
    color: #2c303a;
    height: 20px;
    border-radius: 2px;
    padding: 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
    margin: 0 2px;
}

.page-btn:first-of-type {
    margin-left: 0;
}

.page-btn:last-of-type {
    margin-right: 0;
}

.page-btn:not([class$="-page"]) {
    width: 35px;
    /* border: 2px solid red; */
}

.pagination-buttons {
    display: flex;
    align-items: center;
}

.page-btn[class*="-page"] {
    background: #ccc;
    font-size: 0.6em;
    font-weight: 700;
}

.page-btn.active {
    background: var(--yellow);
    color: #fff;
}

.page-btn[disabled] {
    opacity: 0.3;
}

/* ----------- Download Buttone ------------- */
.dt-buttons.btn-group.flex-wrap {
    position: absolute;
    top: 0.6rem;
    margin-top: 0;
}

.dataTables_wrapper.dt-bootstrap5.no-footer {
    position: relative;
}

#demotable_wrapper table {
    width: 100%;
}

/* ----------------------RESPONSIVE DESIGN---------------------- */
/* downloads per user section */
@media screen and (max-width: 990px) {
    .downloads .downloads-header {
        display: block;
        gap: 1rem;
    }

    .downloads .downloads-header h1 {
        margin-bottom: 1rem;
    }

    .downloads .footer-table {
        display: block;
    }

    .downloads .footer-table p {
        margin-bottom: 1rem;
    }
}

/*Table section */
@media screen and (max-width: 735px) {
    .downloads {
        /* border: 2px solid green; */
        flex-wrap: wrap;
        width: 100%;
    }

    .downloads .downloads-header-right {
        /* border: 2px solid yellow; */
        display: block;
        float: left;
    }

    .downloads .downloads-header .dropdown {
        /* border: 2px solid red; */
        margin-bottom: 1rem;
    }

    .downloads-header .dropdown .select-menu .select-btn {
        min-width: 35rem;
    }
}

/* Manage Users */
.add-admin-section {
    padding: 10px;
}

.tabContent .title {
    font-size: 21.5px;
    color: var(--black);
    font-weight: 400;
    margin: 1rem 0;
}

.input-field-wrapper {
    display: grid;
    column-gap: 1rem;
    row-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.input-field label {
    font-size: 12px;
    color: var(--primary);
}

.input-field label span {
    color: #ff0000;
}

.input-field .input-text-field {
    height: 37px;
    display: flex;
    align-items: center;
    border: 1px solid #545f71;
    border-radius: 6px;
    margin-top: 2px;
}

.input-field .input-text-field svg {
    margin: 0 4px 0 10px;
}

.input-field .input-text-field input,
.input-field .input-text-field select {
    flex: 1;
    height: inherit;
    background-color: transparent;
    border: none;
    margin-right: 5px;
}

.input-field .input-text-field input:focus,
.input-field .input-text-field select {
    outline: none;
}

.add-user-btn {
    border: none;
    background-color: var(--text-color);
    display: flex;
    margin: 2.5rem 0;
    padding: 8px 30px;
    border-radius: 6px;
}

.add-user-btn svg {
    margin-right: 5px;
}

.add-user-btn p {
    color: var(--yellow);
}

.add-user-btn:hover {
    cursor: pointer;
}

@media (max-width: 768px) {
    .input-field-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ============================= admin || view publisher =======================*/
.papers-container {
    transition: all 0.3s ease;
    gap: 20px;
    font-family: var(--font-family);
}

.papers-container.active {
    display: flex !important;
    gap: 0;
    flex-direction: row !important;
}

/* recent-papers-section tab */
.recent-papers-section {
    padding: 1.5rem 1rem 1rem 1rem;
    flex: 1;
    transition: all 0.3s ease;
}

.recent-papers-section.shrunk {
    padding: 1rem;
    padding-top: 0;
}

.recent-papers-section h1 {
    display: none;
    padding: 1rem;
}

.recent-papers-section.shrunk h1 {
    display: block;
    font-size: 25px;
    margin-bottom: 0;
}

.recent-papers-section.shrunk .recent-papers {
    max-height: 65dvh;
    overflow-y: scroll;
}

.recent-papers-section .recent-papers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 2rem;
    padding: 1rem 0.5rem 1rem 0.5rem;
}

.recent-papers .card-element {
    display: inline-block;
    border-radius: 14px;
    box-shadow: 5px #e2e6ea;
}

.card-element .card-image {
    margin-bottom: 2rem;
    height: 290px;
    width: 100%;
}

.card-element .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.card-element .card-discription {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
}

.card-element .card-discription .card-text p {
    font-family: "Inter";
    font-style: normal;
    font-size: 13px;
    line-height: 14px;
    color: #363636;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.card-discription .card-stars .stars {
    display: flex;
    justify-content: end;
    gap: 2px;
    margin-bottom: 8px;
}

.card-discription .card-stars .stars img {
    height: 13px;
    width: 13px;
}

.card-discription .card-stars button {
    background-color: #363636;
    font-size: 10px;
    padding: 10px;
    border-radius: 4px;
    color: #ffcc00;
    font-family: var(--font-sans-regular);
    font-style: normal;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.pagination-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-right: 10px;
}

.pagination-container button {
    background-color: #ece8d8;
    color: rgb(10, 10, 10);
    border: none;
    margin-left: 8px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pagination-container button:hover {
    background-color: rgba(255, 204, 0, 0.6);
}

.pagination-container button.active {
    background-color: #ffcc00;
    font-weight: bold;
}

.tabContent {
    width: 100%;
    background-color: #f9f9f980;
    border: 3px solid white;
    border-radius: 19px;
    padding: 20px 12px;
}

@media screen and (max-width: 768px) {
    .tabContent {
        padding: 1rem;
        margin-top: 1rem;
    }

    .justify-content-between {
        display: flex;
        margin-bottom: 0.5rem;
        flex-direction: column;
    }

    .add-admin-section {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
    }

    .add-admin-section .d-flex {
        display: flex;
        padding: 1rem;
        flex-direction: column;
    }

    .add-admin-section .upload {
        display: flex;
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .add-admin-section .left {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.add-admin-section {
    padding: 10px;
}

.tabContent .title {
    font-size: 21.5px;
    color: var(--black);
    font-weight: 400;
    margin: 1rem 0;
}

.paper-details {
    flex: 1;
    padding: 20px;
    display: none;
}

.paper-details.active {
    display: block;
}

.paper-details .paragragh {
    font-size: 20px;
    margin-bottom: 4rem;
}

.paper-details-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.details .details-field {
    display: flex;
    border-bottom: 1px solid #363636;
    margin-bottom: 3rem;
    gap: 2rem;
}

.details .details-field h1 {
    font-size: 13px !important;
}

.details .details-field p {
    font-size: 12px !important;
    display: flex;
}

.detail-image {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.detail-image img {
    width: 100%;
    height: 100%;
}

.paper-details-container .details .download-btn {
    border: 1px solid black;
    background-color: var(--darkGray);
    align-items: center;
    width: 100%;
    gap: 4px;
    justify-content: center;
    display: flex;
    margin-bottom: 1rem;
    padding: 8px 30px;
    border-radius: 6px;
}

.paper-details-container .details .download-btn svg {
    margin-right: 5px;
}

.paper-details-container .details .download-btn p {
    color: var(--yellow);
}

.paper-details-container .details .download-btn:hover {
    cursor: pointer;
}

.paper-details-container .details .buttons {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.paper-details-container .details .buttons .delete-btn {
    border: 1.0131px solid #de4848;
    display: flex;
    margin-bottom: 1rem;
    padding: 8px 30px;
    border-radius: 6px;
    width: 100%;
}

.paper-details-container .details .buttons .delete-btn p {
    color: #de4848;
}

.paper-details-container .details .delete-btn:hover,
.paper-details-container .details .share-btn:hover {
    cursor: pointer;
}

.paper-details-container .details .buttons .share-btn {
    border: 1.0131px solid #363636;
    display: flex;
    margin-bottom: 1rem;
    padding: 8px 30px;
    border-radius: 6px;
    width: 100%;
}

/* ------------responsiveness---------------- */
@media screen and (max-width: 1000px) {
    .paper-details .paper-details-container {
        display: block;
    }

    .paper-details-container .detail-image {
        /* border: 1px solid red; */
        width: 100%;
    }
}

@media screen and (max-width: 815px) {
    .paper-details-section .main {
        display: block;
    }
}

/* ========================================ADMIN || CREATE-PUBLISHER ========================= */
#add-admin {
    padding: 1rem;
}

#add-admin .input-field .input-text-field {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

#add-admin .input-field .input-text-field input {
    color: var(--text-color);
}

#add-admin .add-user-btn {
    border: none;
    background-color: var(--text-color);
    padding: 8px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--primary-color);
    border-radius: 6px;
}

/* ========================================ADMIN || DISBURSEMENT ========================= */
.create-disbursement {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 2rem;
}

.create-disbursement h1 {
    font-size: 20px;
    width: 30%;
}

.create-disbursement form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 70%;
}

#request .container .row > .gap-2:hover {
    background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .header-right .change-languge {
        display: none !important;
    }
}

@media screen and (max-width: 600px) {
    #request .tabContent {
        padding: 10px !important;
    }

    #request .tabContent .px-4 {
        padding: 10px !important;
    }

    #request .tabContent {
        padding: 10px !important;
    }

    #request .tabContent > .px-4 > .d-flex {
        padding: 0 !important;
        gap: 1rem;
    }

    .propostion-boxes {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #proportion {
        top: 0 !important;
    }

    #request .tabContent .px-4 .bg-image {
        height: auto;
    }

    #request .propostion-boxes>div {
        width: 100% !important;
        line-height: normal;
    }

    .responsive-parent>.responsive{
        width: 100% !important;
    }

    .responsive-parent{
        flex-direction: column;
    }

    .responsive-parent>.upload{
        width: 100% !important;
    }
}

.container .row > .gap-2:hover {
    background-color: var(--primary-color);
}

.amount-box {
    display: flex;
    align-items: center;
    border: 1px solid #545f71;
    border-radius: 10px;
}

.label {
    padding: 10px 15px;
    background: #f9f9f9;
    font-size: 12px;
    border-radius: 10px 0 0 10px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
    border-right: 1px solid #e0e0e0;
}

.amount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    flex-grow: 1;
}

.icon {
    margin-right: 10px;
    color: #555;
    font-size: 16px;
}

.amount {
    /* flex-grow: 1; */
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.currency {
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

@media screen and (max-width: 768px) {
    .create-disbursement {
        display: flex;
        align-items: start;
        flex-direction: column;
        padding: 0;
        gap: 1rem;
    }

    .create-disbursement h1 {
        font-size: 20px;
        width: 100%;
    }

    .create-disbursement form {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .create-disbursement form .d-flex {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        width: 100%;
    }
}

.create-disbursement form .create-input {
    border: 1px solid var(--grey-color);
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.create-disbursement form .create-input input {
    border: none;
    width: 100%;
    outline: none;
    background-color: transparent;
    color: var(--text-color);
}

.create-disbursement form button {
    border: none;
    background-color: var(--text-color);
    display: flex;
    padding: 8px 30px;
    align-items: center;
    gap: 10px;
    margin: 0;
    border-radius: 6px;
    color: var(--primary-color);
}

/* App Config */
/* menu uploads section */
.menu-uploads {
    box-shadow: 11px 11px 77.4px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(80.6px);
    border-radius: 19px;
}

/* top section */
.menu-uploads .top {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    /* border: 1px solid red; */
}

/* top left section */
.top .upload {
    display: flex;
    gap: 1.2rem;
    flex-basis: 60%;
}

.upload .logo-preview {
    width: 90px;
    padding-bottom: 10px;
}

.upload .logo-preview p {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    color: #3a3a49;
    text-align: center;
    margin-bottom: 4px;
}

.upload .logo-preview img {
    background-color: var(--yellow);
    margin: auto;
    display: flex;
    width: 47.67px;
    height: 48.95px;
    border-radius: 10px;
}

.upload .upload-file {
    display: flex;
    /* justify-content: space-between; */
    gap: 0.7rem;
    margin: auto;
    width: 100%;
    border: 2px dashed #545f71;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    padding: 10px;
}

.upload .upload-file img {
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.upload .upload-file span {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    color: #3a3a49;
    margin: auto;
}

.upload .upload-file span .file-type {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 9px;
    color: #a4a4a4;
    padding-top: 3px;
}

.upload .upload-file .select-file {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.873893px solid #363636;
    border-radius: 4px;
    cursor: pointer;
    gap: 4px;
    padding: 7px;
    box-sizing: border-box;
}

.upload .upload-file .select-file img {
    height: 13px;
    width: 13px;
}

/* top middle section */
.top .responsive {
    display: flex;
    gap: 2rem;
    flex-basis: 40%;
    /* border: 1px solid blue; */
}

.top .process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: "Work Sans";
}

.top .process img {
    height: 40px;
    width: 40px;
}

.top .process p {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: #3a3a49;
    margin-bottom: 0.8rem;
}

.top .process p small {
    font-size: 8px;
    margin-bottom: 5rem;
}

.process .progress-bar {
    height: 3px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 35px;
}

.process .progress-bar .bar {
    height: 100%;
    width: 10%;
    background-color: var(--yellow);
    border-radius: inherit;
}

/* top right section */
.top .upload-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 10px;
}

.top .upload-btn p {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: #3a3a49;
    cursor: pointer;
}

.top .upload-btn .btn-upload {
    padding: 7px 28px 7px 28px;
    gap: 3px;
    background-color: var(--yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.top .upload-btn .btn-upload span {
    font-size: 10px;
}

/* bottom menu upoads */
.menu-uploads .bottom {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-uploads .bottom .input-field {
    width: 39%;
}

.menu-uploads .bottom .add-user-btn {
    border: none;
    background-color: var(--darkGray);
    display: flex;
    margin-top: 2rem;
    border-radius: 6px;
}

.menu-uploads .bottom .add-user-btn svg {
    margin-right: 5px;
}

.menu-uploads .bottom .add-user-btn p {
    color: var(--yellow);
}

.menu-uploads .bottom .add-user-btn:hover {
    cursor: pointer;
}

/* add banner */
.menu-uploads .banner {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center !important;
}

.menu-uploads .banner .input-field {
    width: 80%;
}

.menu-uploads .banner .add-user-btn {
    border: none !important;
    background-color: var(--darkGray) !important;
    display: flex !important;
    border-radius: 6px !important;
    margin-bottom: 1.5rem !important;
}

.menu-uploads .banner .add-user-btn svg {
    margin-right: 5px;
}

.menu-uploads .banner .add-user-btn p {
    color: var(--yellow);
}

.menu-uploads .banner .add-user-btn:hover {
    cursor: pointer;
}

.table-form .image img {
    background-color: var(--yellow);
    border-radius: 10px;
}

/* table form section */
.table-form {
    background-color: #f9f9f9;
    margin: 1rem 0 1rem 0;
    padding: 1.5rem;
    border: 1px solid #ffffff;
    box-shadow: 11px 11px 77.4px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(80.6px);
    border-radius: 19px;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.table-form::-webkit-scrollbar {
    display: none;
}

.table-form table thead tr th {
    font-size: 9px;
    color: #667085;
    background-color: white;
    padding: 10px;
    border-bottom: 1px solid #161616;
}

.table-form table thead tr th div {
    display: flex;
    align-items: center;
}

.table-form table thead tr th div p {
    margin-right: 4px;
}

.table-form table tbody tr td {
    padding: 10px;
    border-bottom: 1px solid #161616;
}

.table-form table tbody tr td input[type="checkbox"] {
    accent-color: var(--yellow);
}

.table-form table tbody tr td .image img {
    width: 38.5;
    height: 47px;
    background-color: var(--yellow);
    border-radius: 10px;
}

.table-form table tbody tr td .trash {
    padding: 8px;
    height: 45px;
    border: 1px solid var(--yellow);
    width: 45px;
}

.table-form table tbody tr td .trash img {
    height: 25px;
    width: 25px;
    background-color: none;
}

/* ---------------responsiveness design------------ */
@media screen and (max-width: 1032px) {
    .menu-uploads .top {
        display: block;
        margin-bottom: 1rem;
    }

    .menu-uploads .bottom {
        display: block;
    }

    .menu-uploads .banner {
        display: block;
    }

    .menu-uploads .bottom .input-field {
        width: 100%;
        margin-bottom: 1rem;
    }

    .menu-uploads .banner .input-field {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .upload .upload-file {
        padding: 5px;
    }
    .upload .upload-file span {
        font-size: 10px;
    }

    .upload .upload-file img {
        height: 20px;
        width: 20px;
    }

    .upload .upload-file span .file-type {
        font-size: 7px;
    }

    .upload .upload-file .select-file {
        padding: 5px;
    }

    .upload .upload-file .select-file img {
        height: 10px;
        width: 10px;
    }

    .upload .upload-file .select-file span {
        font-size: 9px;
    }

    input{
        width: 100% !important;
    }
}

@media screen and (max-width: 510px) {
    .top .upload {
        display: block;
    }
}

/* =============== admin || disbursment{id}=================== */
.bg-image {
    background-image: url("/images/group.png");
    height: 150px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 14px;
}

.propostion-boxes {
    display: flex;
    gap: 2rem;
    height: 100%;
    z-index: 9999;
    position: relative;
}

#proportion {
    background-image: url("/images/proportion.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80%;
    position: absolute;
    top: 10%;
    max-width: 95% !important;
    z-index: 1;
    opacity: 0.7;
    background-color: rgba(59, 205, 144, 0.9);
    border-radius: 14px;
    left: 3%;
}

.bg-image2 {
    background-image: url("/images/group.png");
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 14px;
    display: flex;
    gap: 2rem;
}

/* =============== admin || Repors || Periodic ================ */
.report-filter-container {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--label-color);
    gap: 0.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.report-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f1f1f;
    white-space: nowrap;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: end;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .filters {
        flex-wrap: wrap;
        display: flex;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.filter-group label {
    margin-bottom: 4px;
    font-weight: 500;
    color: #4b5563;
}

.filter-group select,
.filter-group input[type="date"] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-color);
    min-width: 150px;
    outline: none;
}

.search-btn {
    background-color: var(--text-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-btn:hover {
    background-color: #111827;
}

/* =============== admin || Reports || components ================ */
.user-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.details {
    display: flex;
    flex-direction: column;
}

.details strong {
    font-size: 20px;
    font-weight: bold;
}

.details p {
    font-size: 15px;
    color: var(--text-color);
}

.downloads {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.downloads small {
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--font-sans-bold);
}

.downloads-count {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
}

.downloads-count img {
    width: 20px;
    height: 20px;
}

.details .details-field {
    margin-bottom: 1.5rem !important;
}

.details .details-field h1,
.details .details-field p {
    margin-bottom: 0 !important;
}

.modal-style {
    background-color: #f9f9f9 !important;
    border-radius: 19px !important;
    border: 3px solid #fff !important;
}

.modal-style button.btn-primary {
    background-color: var(--primary-color) !important;
}

.more-button:hover {
    background-color: var(--primary-color);
    border: none !important;
    border-width: 0 !important;
}

/* ================== Revenue page==================== */
.revenue-container {
    padding: 1.5rem;
}

.revenue-container > .d-flex {
    justify-content: space-between;
}

.revenue-container .revenue-amount > .justify-content-between:hover {
    background-color: var(--primary-color);
}

.revenue-container .gap-2 img {
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
}

@media screen and (max-width: 768px) {
    .revenue-container {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .revenue-container > .d-flex {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        gap: 1rem;
    }

    .revenue-container .container .row {
        width: 100% !important;
    }

    .revenue-container .container .row .col {
        width: 100% !important;
    }
}

/* ================= mobile menu sidebar ======================= */
/* Basic styles for visibility */
.hidden {
    display: none;
}

#mobileMenuIcon {
    display: none;
}

@media screen and (max-width: 768px) {
    #mobileMenuIcon {
        display: block;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.show {
    opacity: 1;
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    max-width: 350px;
    height: 100%;
    border-radius: 14px;

    z-index: 30;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.show {
    transform: translateX(0%);
}

/* edit image on  view publisher page*/
.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-container img {
    object-fit: cover;
    border-radius: 10px;
}

.edit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.edit-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

#fileInput {
    display: none;
}
