:root {
    --sidebar-width: 240px;
    --primary-color: #18181B;
    --active-green: #E7F6E9;
    --active-green-text: #1D8E3E;
    --progress-orange: #FFF6ED;
    --progress-orange-text: #F5A55C;
    --pending-red: #FEECEB;
    --pending-red-text: #F0483E;
}

body {
    font-family: "Raleway", sans-serif;
    background: #F8F8F8;
    color: #18181B;
}

.sidebar {
    width: var(--sidebar-width);
    position: fixed;
    /* height: 100vh; */
    background: white;
    padding: 24px 16px;
    border-right: 1px solid #EAEAEA;
    box-shadow: 0 5px 26px rgba(0, 0, 0, 0.2);
}

.logo {
    margin-bottom: 32px;
    padding-left: 8px;
    display: flex;
    justify-content: center;
}

.main-content {
    /* margin-left: var(--sidebar-width); */
    padding: 24px 32px;
    background: white;
    min-height: 100vh;
}

.nav-link {
    color: #71717A;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.nav-link i {
    width: 20px;
    margin-right: 12px;
}

.nav-link.active {
    background: var(--primary-color);
    color: white;
    margin-left: 12px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2);
    margin-right: 12px;
}

.nav-link:hover:not(.active) {
    background: #F4F4F5;
}

.status-badges {
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.status-active {
    background: var(--active-green);
    color: var(--active-green-text);
}

.status-pending {
    background: var(--pending-red);
    color: var(--pending-red-text);
}

.status-progress {
    background: var(--progress-orange);
    color: var(--progress-orange-text);
}

.status-resolved {
    background: var(--active-green);
    color: var(--active-green-text);
}

.search-box {
    background: #F4F4F5;
    border-radius: 8px;
    padding: 8px 16px;
    width: 300px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #71717A;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #A1A1AA;
}

.notification-badge {
    background: #FEFCE8;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717A;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card:hover {
    border: 1px solid #f5a623;
}

.stats-card {
    padding: 20px;
}

.under-summary {
    font-size: 16px;
    font-weight: 600;
}

.stats-card .text-muted {
    font-size: 13px;
    color: #f5a623 !important;
    margin-bottom: 8px;
}

.stats-card h5 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.service-row {
    padding: 12px 0;
    border-bottom: 1px solid #F4F4F5;
}

.service-row:last-child {
    border-bottom: none;
}

.service-label {
    color: #71717A;
    font-size: 14px;
}

.service-value {
    font-size: 14px;
    font-weight: 500;
}

.btn-manage {
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
}

.btn-manage:hover {
    background: #27272A;
    color: white;
}

.tickets-table th {
    font-weight: 500;
    color: #71717A;
    font-size: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #F4F4F5;
}

.tickets-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #F4F4F5;
}

.quick-action-card {
    padding: 20px;
    border-radius: 8px;
    background: #F4F4F5;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-action-card:hover {
    background: #E4E4E7;
}

.quick-action-card h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.quick-action-card p {
    font-size: 13px;
    color: #71717A;
    margin: 0;
}

.quick-action-card i {
    color: #f5a623;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.usage-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.usage-stat .label {
    color: #71717A;
}

.usage-stat .value {
    font-weight: 500;
}

select.form-select {
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    color: #71717A;
    background-position: right 12px center;
    background-color: #F8F8F8;
}

select.form-select-help {
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #71717A;
    background-position: right 12px center;
    background-color: white;
}

.header-wrapper {
    padding: 20px 5px;
    border-bottom: 1px solid #EAEAEA;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-text {
    font-size: 24px;
    font-weight: 600;
    color: #18181B;
    margin: 0;
    line-height: 1.2;
}

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

.search-wrapper {
    position: relative;
    width: 360px;
}

.search-wrapper input {
    width: 100%;
    height: 40px;
    background: white;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 16px 0 40px;
    font-size: 14px;
    color: #18181B;
    transition: all 0.2s;
}

.search-wrapper input:focus {
    outline: none;
    border-color: #E4E4E7;
    background: white;
}

.search-wrapper input::placeholder {
    color: #A1A1AA;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5a623;
    font-size: 16px;
}

.notification-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F19F001F;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.notification-btn:hover {
    /* background: #FEF9C3; */
    border: 2px solid #854D0E;
}

.notification-btn i {
    color: #854D0E;
    font-size: 16px;
}

.out-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F19F001F;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.out-btn:hover {
    /* background: #FEF9C3; */
    border: 2px solid #854D0E;
}

.out-btn i {
    color: #854D0E;
    font-size: 16px;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 4px 4px 4px 4px;
    /* background: #FEF3C7; */
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.user-profile:hover {
    background: #FDE68A;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
}

.user-info {
    margin-right: 12px;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: #18181B;
    margin: 0;
    line-height: 1.4;
}

.user-email {
    font-size: 12px;
    color: #71717A;
    margin: 0;
    line-height: 1.4;
}

.chevron-icon {
    color: #71717A;
    font-size: 14px;
    margin-right: 4px;
}

.quick-action-container {
    max-height: calc(3 * 85px);
    overflow-y: auto;
    padding-right: 5px;
}

.quick-action-container::-webkit-scrollbar {
    width: 6px;
}

.quick-action-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.quick-action-container::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.d-flex {
    display: flex;
    gap: 20px;
}

.chart-container {
    flex: 1;
    max-width: 250px;
}

.usage-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.usage-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding: 5px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.status-badge2 {
    background-color: #e7f7e7;
    color: #2da52d;
    padding: 10px 17px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plan-cards {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plan-card-details {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.launch-btn {
    background: #000;
    color: white;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    border: none;
    position: relative;
}

.avatar-group {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.avatar-group img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.detail-row .value {
    color: #000;
    font-weight: 500;
}

.detail-row:first-child {
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 2px solid #E5E5E5;
    margin-bottom: 10px;
}

.detail-row span {
    flex: 1;
    font-size: 15px;
}

.detail-row .value {
    text-align: right;
    white-space: nowrap;
}

.btn-upgrade {
    font-size: 13px;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: 8px;
}

.btn-cancel {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid #151515;
}

/* .table {
    border: 1px solid #E5E5E5;
    border-collapse: separate;
    width: 100%;
    border-radius: 4px;
    border-spacing: 0;
    padding: 8px;
} */

.table thead th {
    font-size: 15px;
    font-weight: 500;
    background-color: #FCFCFD;
    padding: 12px;
}

.table tbody td {
    font-size: 14px;
    line-height: 17.61px;
    font-weight: 400;
    padding: 14px;
    border-radius: 4px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-style: none;
    border-width: 0;
    border-color: inherit;
}

.number-bold {
    font-size: 15px;
    font-weight: 500;
}

.chart-dashboard {
    display: flex;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .search-wrapper {
        width: 280px;
    }

    .header-container {
        padding: 0 16px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        width: 180px;
    }

    .main-content {
        margin-left: 180px;
    }

    .search-wrapper {
        width: 240px;
    }

    .header-container {
        padding: 0 12px;
    }

    .welcome-text {
        font-size: 20px;
    }

    .user-name {
        font-size: 13px;
    }

    .user-email {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 160px;
    }

    .main-content {
        margin-left: 160px;
    }

    .search-wrapper {
        width: 200px;
    }

    .header-container {
        padding: 0 8px;
    }

    .welcome-text {
        font-size: 18px;
    }

    .user-name {
        font-size: 12px;
    }

    .user-email {
        font-size: 10px;
    }

    .btn-upgrade {
        font-size: 10px;
        padding: 8px 10px;
        border-radius: 8px;
        width: 100%;
    }

    .btn-cancel {
        font-size: 10px;
        padding: 8px 10px;
        border-radius: 8px;
        width: 100%;
    }

    .chart-dashboard {
        display: block;
        gap: 20px;
    }

    .chart-container {
        height: 280px;
        width: 250px;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 16px;
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }

    .search-wrapper {
        width: 100%;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .welcome-text {
        font-size: 20px;
    }

    .user-profile {
        padding: 8px;
    }

    .user-name {
        font-size: 14px;
    }

    .user-email {
        font-size: 12px;
    }

    .quick-action-container {
        max-height: none;
    }

    .chart-container {
        max-width: 100%;
    }

    .usage-stats {
        width: 100%;
    }
}

.main-content {
    display: none;
    /* Hide all sections by default */
}

#dashboardContent {
    display: block;
    /* Show dashboard on page load */
}


.service-icon {
    display: inline-block;
    padding: 5px;
    font-size: 1rem;
    /* Adjust font size as needed */
    line-height: 1;
    /* Remove extra line spacing */
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}


.cart-item {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 16px 22px;
    max-width: 800px;
    margin-bottom: 20px;
}

.bg-white {
    border-radius: 8px;
}

.bg-grey {
    background-color: #F8F8F8;
    padding: 20px;
    border-radius: 12px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: black;
    color: white;
}

.mailbox-icon {
    background: white;
    border: 1px solid #dee2e6;
    color: #212529;
}

.service-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.domain-text {
    font-size: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.quantity-btn {
    border: 1px solid #dee2e6;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.year-select {
    width: 180px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 8px;
}

.renewal-text {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 18px;
}

.divider {
    height: 1px;
    background: #dee2e6;
    margin: 24px 0;
}

.price-text {
    color: #f5a623;
    font-weight: 500;
    font-size: 15px;
}

.discount-badge {
    color: black;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
}

.feature-item {
    color: #6c757d;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.delete-btn {
    color: #dc3545;
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.delete-btn:hover {
    opacity: 0.8;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.font-text {
    font-size: 14px;
    font-weight: 400;
}

.font-text-second {
    font-size: 14px;
    font-weight: 600;
}

.pay-now-btn {
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-with-icon {
    padding-left: 40px;
    /* Space for the icon */
    padding-right: 60px;
    /* Space for the "Apply" text */
    height: 40px;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    /* Adjust the size of the icon */
    height: auto;
}

.apply-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #f5a623;
    /* Adjust text color */
    cursor: pointer;
    font-weight: 600;
}

.input-with-icon::placeholder {
    color: #aaa;
    /* Style your placeholder text */
}

.secure-checkout {
    display: flex;
    /* Aligns the icon and text in a row */
    align-items: flex-start;
    /* Vertically center the icon and text */
}

.lock-image {
    width: 16px;
    /* Adjust the size of the lock image */
    height: auto;
    margin-right: 10px;
    /* Space between the image and text */
}

.secure-checkout div {
    display: flex;
    flex-direction: column;
}

.secure-checkout div>div {
    font-weight: bold;
    /* Optional: makes the heading bold */
    margin-bottom: 5px;
    /* Adds space between heading and description */
}

.modal-content {
    border-radius: 10px;
    padding: 20px;
}

.modal-body {
    text-align: left;
}

.form-select:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 .25rem rgba(245, 166, 35, .25);
}

#myCartContentOverview {
    display: none;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.billing-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
}

.billing-cards {
    background: #F8F8F8;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
}

.address-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.edit-btn {
    /* color: #F59E0B; */
    font-weight: 600;
    padding: 0;
    font-size: 15px;
}

.payment-btn {
    border: 1px solid #EAECF0;
    background: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.payment-btn:hover {
    border: 2px solid #151515;
}

.pay-now-btns {
    background: #18181B;
    color: white;
    padding: 14px;
    border-radius: 8px;
    width: 100%;
    border: none;
    font-weight: 500;
    margin: 24px 0;
    font-size: 16px;
    font-weight: 400;
}

.promo-input {
    border: 1px solid #EAECF0;
    padding: 10px 16px;
    border-radius: 8px;
    width: 100%;
}

.apply-btn {
    color: #F59E0B;
    border: none;
    background: none;
    font-weight: 500;
    padding: 0;
}

.cart-item {
    background: white;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #EAECF0;
    margin-bottom: 16px;
}

.item-icon {
    width: 100px;
    height: 100px;
    background: #18181B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.item-icons {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid #EAECF0;
}

.item-title {
    font-weight: 600;
    font-size: 15px;
}

.item-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
}

.item-price {
    font-weight: 500;
    color: #F59E0B;
    font-size: 15px;
}

.quantity-controls {
    display: flex;
    /* align-items: center; */
    gap: 8px;
}

.quantity-btn {
    border: none;
    background: none;
    padding: 0;
    font-size: 18px;
    color: var(--text-gray);
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 500;
}

.year-select {
    width: 120px;
    border: 1px solid #EAECF0;
    border-radius: 6px;
    padding: 8px;
    margin-top: 6px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    color: var(--text-gray);
    font-size: 14px;
}

.summary-total {
    font-weight: 600;
    color: black;
    font-size: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #EAECF0;
}


.checkbox-label {
    font-size: 14px;
    color: var(--text-gray);
}

.bg-white-overview {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
}

.border-line {
    border: 1px solid #E5E5E5;
    padding: 24px;
    border-radius: 4px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #ccc;
    /* Initial border color */
    appearance: none;
    position: relative;
    cursor: pointer;
    background-size: 15px 15px;
    /* Adjust size for tick SVG */
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.form-check-input:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 .25rem rgba(245, 166, 35, .25);
}

.form-check-input:checked {
    background-color: white;
    /* Background color when checked */
    border-color: #f5a623;
    /* Border color when checked */
}

.form-check-input:checked {
    background-image: url('/assets/images/tick.svg');
    /* Path to your yellow tick SVG */
    background-size: 16px 16px;
    /* Adjust the size of the tick */
    background-position: center;
    background-repeat: no-repeat;
}

.form-check-input[type=checkbox]:not(:checked) {
    background-image: none;
    /* No tick for unchecked state */
}

.form-check-label {
    font-size: 14px;
    margin-left: 10px;
    /* Space between checkbox and label text */
}


.months-select {
    padding: 6px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
}

.payment-status {
    position: relative;
    width: 100%;
}

.payment-title {
    font-size: 24px;
    font-weight: 600;
}

.mt-20 {
    margin-top: 20px;
    padding: 24px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #d67b1a, #f5a623, #f8e1a1);
    /* Multiple gradient stops */
    border-radius: 10px;
    position: relative;
}

.progress-tooltip {
    position: absolute;
    top: -30px;
    /* Move tooltip above the bar */
    left: 50%;
    /* Initially set to center */
    transform: translate(-50%, 0);
    /* Adjust tooltip's position */
    background-color: black;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
    visibility: hidden;
    /* Initially hidden */
    opacity: 0;
    /* Initially invisible */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Smooth transition */
}

.progress-container:hover .progress-tooltip {
    visibility: visible;
    /* Show tooltip on hover */
    opacity: 1;
    /* Make tooltip visible on hover */
}


.billing-table-container {
    width: 100%;
    max-height: 300px;
    /* Adjust as needed */
    overflow-x: auto;
    /* Enables horizontal scroll inside table */
    overflow-y: auto;
    /* Enables vertical scroll if needed */
    display: block;
    border: 1px solid #E5E5E5;
    padding: 10px;
    /* Ensures padding applies */
}

.billing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Ensures table doesn't shrink */
}

.billing-table th,
.billing-table td {
    padding: 12px;
    border-bottom: 1px solid #E5E5E5;
    white-space: nowrap;
    /* Prevents text from wrapping */
}

.billing-table th {
    color: #6c757d;
    font-weight: normal;
    background-color: #FCFCFD;
}

/* Responsive Fix */
@media screen and (max-width: 768px) {
    .billing-table-container {
        max-height: 250px;
        /* Adjust height for smaller screens */
    }
}




.status-paid {
    color: #2ecc71;
}

.status-overdue {
    color: #e74c3c;
}

.chart-containers {
    width: 250px;
    height: 250px;
    /* Ensure height is defined */
    display: flex;
    align-items: center;
    justify-content: center;
}


.line-chart {
    flex: 1;
}

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



/* .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
} */

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.form-control::placeholder {
    color: #71717A;
    /* Replace with your desired color */
    font-size: 15px;
}

.attachment-upload {
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-submit {
    background-color: #212529;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
}

.table th {
    font-weight: 600;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.status-resolved {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-progress {
    background-color: #fff3e0;
    color: #f57c00;
}

.status-pending {
    background-color: #ffebee;
    color: #c62828;
}

.view-link {
    color: #212529;
    text-decoration: underline;
    font-weight: 600;
}

textarea.form-control {
    padding: 8px 12px;
}

.attachment-upload img.attachment-icon {
    width: 19px;
    /* Adjust width as needed */
    height: auto;
    /* Maintain aspect ratio */
    margin-left: 10px;
    /* Space between the text and the image */
    vertical-align: middle;
    /* Align it with the text */
}


.upload-area {
    border: 2px dashed #ccc;
    border-radius: 6px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    background-color: #F8F8F8;
}

.info-card {
    border: 1px solid #E4E4E7;
    margin-bottom: 10px;
    border-radius: 10px;
}

.info-card img {
    width: 25px;
    height: 25px;
}

.info-card .card-body {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 10px;
}

.info-icon {
    color: #666;
    margin-right: 15px;
}

.info-content {
    flex-grow: 1;
}

.info-label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 0;
}

.info-value {
    margin-bottom: 0;
}

.edit-link {
    color: #000;
    text-decoration: none;
}

.notification-badge {
    background-color: #ffe9d6;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
}

.upload-area-title {
    font-size: 14px;
    font-weight: 400;
}

.action-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.action-card-first {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* padding: 20px; */
    margin-bottom: 30px;
}

.action-card-first:hover {
    border: 1px solid #f5a623;
}

.table-responsive {
    border: 1px solid #E4E4E7;
    border-radius: 4px;
    padding: 8px;
}

/* Default Styles */
.nav-menu {
    padding: 1rem 2rem;
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    top: 72px;
    z-index: 999;
    /* display: none; */
    /* Hide the menu by default */
}

.nav-menu.active {
    display: flex;
    /* Show the menu when active class is added */
}

.nav-item {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
    border: 1px solid #E4E4E7;
    font-weight: 500;
    color: rgba(21, 21, 21, 0.65);
    background-color: white;
}

.nav-item.active {
    background: var(--primary-color);
    color: white;
}

/* Media Query for mobile and tablet responsiveness */
@media (max-width: 1024px) {
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        /* Keep the menu hidden initially */
    }

    .nav-menu.active {
        display: flex;
        /* Show the menu when active class is added */
    }

    .nav-item {
        width: 100%;
        padding: 12px 20px;
        text-align: left;
    }

    .dropdown {
        width: 100%;
        text-align: left;
    }

    /* Position the hamburger menu outside the nav-menu */
    .hamburger-menu {
        display: block;
        cursor: pointer;
        /* position: absolute; */
        /* Position it independently */
        left: 10px;
        top: 15px;
    }

    .hamburger-menu i {
        font-size: 30px;
        color: rgba(21, 21, 21, 0.65);
    }

    .nav-menu {
        padding: 1rem 2rem;
        display: flex;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        top: 72px;
        z-index: 999;
        display: none;
        /* Hide the menu by default */
    }
}

/* Hide hamburger menu on larger screens (desktops/laptops) */
@media (min-width: 1025px) {
    .hamburger-menu {
        display: none;
        /* Hide hamburger on larger screens */
    }
}


.video-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.video-card {
    /* background: #fff; */
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.thumbnail-container {
    position: relative;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-info {
    /* padding: 1rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 17px;
}

.video-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.channel-info {
    /* display: flex;
    align-items: center; */
    gap: 0.5rem;
    margin-left: 40px;
}

.channel-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.dropdown {
    border: 1px solid #151515;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .search-container {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu {
        padding: 1rem;
    }

    .video-grid {
        padding: 1rem;
        gap: 1rem;
    }

    .chart-containers {
        width: 350px;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.buttons-center {
    display: flex;
    width: 100%;
    gap: 10px;
    /* Adjust space between buttons */
    justify-content: center;
}


.category-title {
    color: #f90;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.faq-item:hover {
    background: #f0f0f0;
}

.faq-question {
    margin: 0;
    padding-right: 30px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #666;
    font-weight: 500;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    color: #666;
    font-size: 15px;
}


.file-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.notification-badge {
    background-color: #FFE4D6;
    color: #000;
    border-radius: 50%;
    padding: 4px 8px;
}

.profile-section {
    background-color: #FFF5EB;
    border-radius: 8px;
    padding: 8px 16px;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.table th {
    font-weight: normal;
    color: #666;
}

.table td {
    vertical-align: middle;
}

.dropdown-toggle::after {
    display: none;
}


@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .search-wrapper {
        width: 100%;
    }

    .search-wrapper input {
        height: 36px;
        font-size: 12px;
        padding-left: 28px;
    }

    .search-icon {
        font-size: 14px;
        left: 10px;
    }

    .notification-btn,
    .out-btn {
        width: 36px;
        height: 36px;
    }

    .user-profile {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .user-info .user-email,
    .chevron-icon {
        display: none;
        /* Hide email and chevron */
    }

    .user-info .user-name {
        font-size: 14px;
        /* Adjust font size */
        font-weight: 500;
    }

    .chevron-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .search-wrapper {
        width: 90%;
    }

    .search-wrapper input {
        font-size: 12px;
    }

    .notification-btn,
    .out-btn {
        width: 32px;
        height: 32px;
    }

    .user-profile {
        gap: 6px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
    }

    .user-info .user-name {
        font-size: 12px;
        /* Further reduce text size */
    }
}