@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --sidebar-bg: #2c3e50;
    --main-bg: #ecf0f1;
    --card-bg: white;
    --text-muted: #7f8c8d;
    --orange: #ff6b35;
    --orange-light: #ff8c65;
    --neutral-100: #f8fafc;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-600: #475569;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    --gradient-success: linear-gradient(135deg, #10b981, #059669);
    --gradient-upload: linear-gradient(135deg, #ddd6fe, #c7d2fe);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    background-color: var(--main-bg);
    font-family: "Inter", sans-serif;
}

ul {
    padding: 0;
}

input[type="date"] {
    font-variant-numeric: tabular-nums;
}

.sidebar {
    background-color: black;
    min-height: 100vh;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.offer-content ul li a:hover {
    color: #018998 !important;
    text-decoration: underline;
}



.sidebar-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-meta {
    text-transform: capitalize;
}

.transactions-section td strong {
    text-transform: capitalize;
}

.logo {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.logo i {
    color: var(--orange);
    margin-right: 0.5rem;
}

.user-profile {
    text-align: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    border: 3px solid white;
    overflow: hidden;
}

.user-name {
    color: white;
    font-weight: 600;
    margin: 0;
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    color: var(--orange);
    margin-right: 0.75rem;
    width: 20px;
}

.nav-link.active i {
    color: var(--orange);
}

.submenu {
    padding-left: 3rem;
}

.submenu .nav-link {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.main-content {
    margin-left: 280px;
    padding: 0 2rem;
    /* min-height: 100vh; */
}

.top-bar {
    background-color: #ffffff47;
    border-radius: 9px;
    padding: 18px 5px 26px 26px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box {
    position: relative;
}

.search-input {
    border: none;
    background-color: var(--main-bg);
    border-radius: 25px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    width: 100%;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.widget {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.widget-header {
    background-color: var(--sidebar-bg);
    color: white;
    padding: 0.75rem 1rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 15px 15px 0 0;
    font-weight: 600;
    position: relative;
}

.widget-options {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--sidebar-bg);
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.eye-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    width: 60px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.chart-placeholder {
    background: linear-gradient(135deg, #e8f5e8, #f0e6ff);
    height: 150px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.chart-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, var(--orange) 2px, transparent 2px),
        linear-gradient(-45deg, #9b59b6 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.progress-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: #e9ecef;
    stroke-width: 8;
    fill: transparent;
}

.progress-ring-progress {
    stroke: var(--orange);
    stroke-width: 8;
    stroke-linecap: round;
    fill: transparent;
    stroke-dasharray: 283;
    stroke-dashoffset: 71;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sidebar-bg);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-top: 1rem;
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.calendar-date {
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-date:hover {
    background-color: var(--main-bg);
    border-radius: 4px;
}

.calendar-date.today {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    border-radius: 4px;
    font-weight: bold;
}

.calendar-date.empty {
    color: var(--text-muted);
}

.stars {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.stars .fa-star:last-child {
    color: #dee2e6;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    outline: none;
    margin: 1rem 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.slider.orange {
    background: linear-gradient(to right, var(--main-bg) 0%, var(--orange) 70%, var(--main-bg) 100%);
}

.slider.orange::-webkit-slider-thumb {
    background: var(--orange);
}

.slider.purple {
    background: linear-gradient(to right, var(--main-bg) 0%, #9b59b6 80%, var(--main-bg) 100%);
}

.slider.purple::-webkit-slider-thumb {
    background: #9b59b6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
    }

    .mobile-toggle {
        display: block;
        position: fixed;
        top: 2px;
        z-index: 1001;
        background: var(--sidebar-bg);
        color: white;
        border: none;
        padding: 5px 8px;
        border-radius: 5px;
        left: 5px;
        font-size: 15px;
        color: black;
    }
}

.mobile-toggle {
    /* display: none; */
    background: none;
}

.user-in h5 {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #313030;
    font-size: 18px;
}

.nav-link i {
    color: #ffffff;
}

.sidebar-header .logo {
    font-size: 24px;
}

.nav-link.active i {
    color: white;
}

.nav-link.active {
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
}


.plan-wrapper ul li {
    display: flex;
    align-items: anchor-center;
    justify-content: space-between;
}

.plan-wrapper ul li {
    /* box-shadow: 0px 1px 7px 2px #ccc; */
    margin-bottom: 20px;
    padding: 23px 32px;
    border-radius: 5px;
    border: 1px solid #cccc;
}

section.user-subc-plans {
    padding-top: 100px;
    padding-bottom: 100px;
}

.top-sear input {
    padding: 11px 22px;
    border-radius: 49px;
    width: 100%;
    background: transparent;
    border: 2px solid #00000047;
}

.offer-items {
    width: 95% !important;
}

.offer-items .offer-info-box {
    border: 1px solid #000;
    padding: 20px 20px 30px 20px;
    border-radius: 15px;
    background: whitesmoke;
}

.offer-items .offer-info-box .offer-post {
    border-bottom: 1px solid #000;
    text-align: justify;
}

.offer-items .offer-info-box .offer-post span.plan {
    font-size: 15px;
    font-weight: 500;
}

.offer-items .offer-info-box .offer-post h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.offer-items .offer-info-box .offer-post h2 sub {
    font-size: 26px;
    font-weight: 500;
}

.offer-items .offer-info-box .offer-content ul li {
    font-size: 16px;
    padding-bottom: 10px;
}

.offer-content ul li a {
    color: #4a5568 !important;
    text-decoration: none;
}

.offer-items .offer-info-box .offer-content ul {
    /* padding-top: 20px; */
}

.offer-items .offer-info-box .offer-content {
    border-bottom: 1px solid #000;
}


.offer-butn {
    display: flex;
    flex-direction: column;
}

.offer-butn a {
    border: 1px solid #000;
    margin-top: 20px;
    padding: 10px 20px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    color: #000;
    border-radius: 6px;
    background: #E4E4E4;
    font-weight: 500;
}

.offer-butn a i {
    margin-left: 5px;
    margin-top: 5px;
    font-size: 12px;
}

.offer-butn a.book-btn {
    background: #000;
    color: #fff;
}

.plans-subsc ul.nav-tabs {
    width: unset !important;
}

.plans-subsc .nav-tabs .nav-link.active {
    color: #212529;
    background-color: #018998 !important;
    color: white;
    border-bottom: 2px solid #212529;
}


ul.nav-tabs {
    width: 37%;
    margin: 0 auto;
    justify-content: center;
    border: none;
    margin-bottom: 10px;
    /*background: #dedede;*/
    border-radius: 50px;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: flex-end;
}

ul.nav-tabs li button {
    border: none !important;
}

/* ul.nav-tabs li {
            background: #ccc !important;
            border-radius: 20px;
        } */

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
}

ul.nav-tabs li button {
    color: #000;
    font-size: 18px;
    padding: 10.5px 18px;
    font-weight: 500;
}

.plans-subsc li.nav-item button {
    padding: 13px 45px;
    border: 1px solid black !important;
    border-radius: 25px;
    margin-left: 10px;
}

.dash-pagetitle h3 {
    font-size: 23px !IMPORTANT;
}

.dash-pagetitle ol.breadcrumb li a {
    color: #024d55;
    text-decoration: none;
}

.offer-content {
    height: 230px;
    max-height: 230px;
    overflow-x: auto;
}

.offer-butn a:nth-child(1) {
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
}

.offer-butn a:nth-child(2) {
    background: black;
    color: white;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #D7FC6F;
}

.upload-container {
    /* max-width: 800px; */
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 1rem 0rem;
    /* box-shadow: var(--shadow-xl); */
    position: relative;
    overflow: hidden;
}

.upload-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.upload-header {
    text-align: center;
    margin-bottom: 3rem;
}

.upload-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upload-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    font-weight: 400;
}

/* Main Upload Zone */
.upload-zone {
    border: 2px dashed var(--neutral-300);
    border-radius: 5px;
    padding: 18px 22px;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.upload-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.upload-zone:hover::before {
    left: 100%;
}

.upload-zone:hover {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.upload-zone.drag-over {
    border-color: var(--primary-blue);
    background: var(--gradient-upload);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    border-style: solid;
}

.upload-zone.drag-over .upload-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-blue);
}

/* Upload Icon */
.upload-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
}

.upload-icon::before {
    content: '';
    /* position: absolute; */
    /* top: -50%; */
    /* left: -50%; */
    /* width: 200%; */
    /* height: 200%; */
    /* background-color: black; */
    /* animation: rotate 3s linear infinite; */
    /* opacity: 0; */
}

.upload-zone:hover .upload-icon::before {
    opacity: 1;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.upload-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
}

.upload-subtext {
    font-size: 1rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.upload-button {
    background: black;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.upload-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.upload-button:active {
    transform: translateY(0);
}

/* File Input */
.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Supported Formats */
.supported-formats {
    margin-top: 2rem;
    text-align: center;
}

.formats-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-icons {
    display: inline-flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.format-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 86px;
}

.format-item:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
}

.format-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.format-icon.pdf {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.format-icon.doc {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.format-icon.img {
    background: linear-gradient(135deg, #10b981, #059669);
}

.format-icon.zip {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.format-icon.txt {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.format-icon.xls {
    background: linear-gradient(135deg, #10b981, #059669);
}

.format-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* File List */
.file-list {
    margin-top: 3rem;
    display: none;
}

.file-list.show {
    display: block;
}

.file-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--neutral-100);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.file-item:hover {
    background: var(--neutral-200);
    transform: translateX(4px);
}

.file-item.success {
    border-left-color: var(--success-green);
    background: rgba(16, 185, 129, 0.1);
}

.file-item.error {
    border-left-color: var(--error-red);
    background: rgba(239, 68, 68, 0.1);
}

.file-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.file-size {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.file-actions {
    display: flex;
    gap: 0.5rem;
}

.file-action {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.file-action.delete {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-red);
}

.file-action.delete:hover {
    background: var(--error-red);
    color: white;
}

.file-action.download {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.file-action.download:hover {
    background: var(--primary-blue);
    color: white;
}

/* Progress Bar */
.upload-progress {
    margin-top: 1rem;
    display: none;
}

.upload-progress.show {
    display: block;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--neutral-200);
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-success);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-600);
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -8px, 0);
    }

    70% {
        transform: translate3d(0, -4px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.upload-zone.uploading .upload-icon {
    animation: bounce 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .upload-container {
        padding: 2rem 1rem;
    }

    .upload-zone {
        padding: 2rem 1rem;
    }

    .upload-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .upload-title {
        font-size: 1.75rem;
    }

    .format-icons {
        gap: 1rem;
    }

    .file-item {
        flex-direction: column;
        text-align: center;
    }

    .file-icon {
        margin: 0 0 1rem 0;
    }
}

div#fileItems i {
    color: black;
}

.main-page-wrapper .card-body {
    padding: 40px;
}

.table_se {
    padding: 9px 21px;
    width: 310px !important;
    margin-bottom: 21px;
    font-size: 16px;
}

.submit-new-request form {
    position: relative;
}

.submit-new-request form:before {
    /* content: ""; */
    position: absolute;
    left: 0;
    background: #d7fc6f;
    height: 100%;
    width: 2px;
    right: 0;
    display: flex;
    margin: 0 auto;
}

button#reqBtn {
    padding: 11px 64px;
    font-size: 17px;
}

.format-item i {
    font-size: 32px;
}

span.status-badge.vip {
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    color: white;
    /* box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); */
    padding: 6px 18px;
    font-size: 13px;
    display: inline-block;
    font-weight: 600;
    border-radius: 50px;
    word-spacing: 1px;
    border: 0px solid;
}

.request-details-card .card-header {
    display: flex;
    justify-content: space-between;
    padding: 22px;
    align-items: center;
    background: black;
}

.request-details-card .card-header h3 {
    font-size: 25px;
    display: flex;
    color: white;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
}

.act-req-btn {
    display: flex;
    gap: 14px;
}

.act-req-btn button {
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    color: white;
    border: 1px solid;
    padding: 7px 25px;
}

.re-t-ta table tr th,
.re-t-ta table tr td {
    padding: 16px;
}

div#historyTrack .offcanvas-header {
    background: #000000;
    color: white;
    padding: 27px;
}

div#historyTrack .offcanvas-header h5 {
    font-size: 23px !important;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-icon {
    position: absolute;
    left: -2px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item h6.card-title {
    font-size: 16px;
    padding-bottom: 2px;
}

.ofc-close {
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 4px;
}

div#historyTrack {
    width: 78vw;
}

img.site-logo {
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    display: flex;
}

.copy-link-b {
    padding-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copy-link-b input {
    width: 90%;
    padding: 10px 20px;
    font-size: 16px;
    background: #cccc;
}

.copy-link-b button {
    padding: 9px 20px;
    font-size: 16px;
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    border: navajowhite;
}












/* auth form css  */
.auth-for-f input {
    background: #ffffff3b;
    color: white;
    padding: 14px 20px;
    border: 1px solid;
}

.auth-for-f input::placeholder {
    color: white;
    font-weight: 300;
}

.auth-for-f input:focus {
    background: #ffffff3b;
    box-shadow: none;
    outline: none;
    border: 1px solid white;
    color: white;
}

.auth-form .row {
    height: 100vh;
    align-items: center;
}

.auth-form-content img {
    position: absolute;
    top: 15px;
}

.auth-form-content {
    padding-top: 100px;
}

.auth-for-f h3 {
    color: white;
}

.auth-for-f label {
    display: none;
}

.auth-for-f form button {
    padding: 10px 35px;
}

.auth-for-f h3 {
    padding-bottom: 20px;
    font-size: 31px;
}

.auth-for-f p {
    color: white;
    font-size: 18px;
}

.auth-for-f p a {
    color: black;
    text-decoration: none;
    margin-left: 3px;
}

div#buyAddonRequest .modal-dialog {
    max-width: 1000px;
}

div#buyAddonRequest .modal-dialog .modal-content {
    background: #232323;
    color: white;
    border: 2px solid #ffffff;
    padding: 9px;
}

div#buyAddonRequest .modal-dialog .modal-content input {
    background: #ffffffab;
    color: white;
    margin-top: 9px;
    padding: 10px 20px;
}

div#buyAddonRequest .modal-dialog {
    max-width: 1000px;
}

.expediate-box .swal2-actions {
    display: flex;
    flex-wrap: wrap;
}

.expediate-box .swal2-actions button {
    width: 75%;
    padding: 12px;
    font-size: 16px;
}

.expediate-box .swal2-actions button:nth-child(1),
.expediate-box .swal2-actions button:nth-child(2) {
    background: green !important;
    color: #fff !important;
    border-radius: 5px;
}

.expediate-box .swal2-actions button:nth-child(3) {
    background: #212529 !important;
    color: #fff !important;
}

.us-subs-un {
    padding-top: 18px;
    border-top: 1px solid #cccc;
}

.us-subs-un h5 {
    padding-bottom: 9px;
}

.us-subs-un ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px;
}

.us-subs-un ul li div span {
    margin-left: 10px;
    background: #017885 ! IMPORTANT;
    padding: 5px 9px;
}


.scroll-wrapper {
    position: relative;
    padding: 20px 0;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 25px;
    padding: 30px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
    height: 0px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 0 20px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #5568d3;
}

.offer-items {
    flex: 0 0 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-items:hover {
    transform: translateY(-10px);
}

.offer-info-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 500px !important;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.offer-info-box:hover {
    border-color: #000000;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.offer-post {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.offer-post .plan {
    text-transform: capitalize !important;
    display: inline-block;
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.offer-post h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 15px 0;
}

.offer-post h2 sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #718096;
    text-transform: lowercase;
}

.offer-post>span {
    display: block;
    color: #017b89;
    font-weight: 600;
    font-size: 19px;
}

.offer-content {
    flex-grow: 1;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 0.95rem;
}

.offer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-content ul li {
    /* padding: 8px 0; */
    position: relative;
    /* padding-left: 25px; */
}



.offer-butn {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.offer-butn .btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
}

.offer-butn .btn:not(.book-btn) {
    /* background: linear-gradient(242deg, #03282C 0%, #009EAF 100%); */
    color: white;
}

.offer-butn .btn:not(.book-btn):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.offer-butn .book-btn {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.offer-butn .book-btn:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

.scroll-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #000000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000000;
}

.scroll-nav-btn:hover {
    background: #000000;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-nav-btn.left {
    left: -15px;
}

.scroll-nav-btn.right {
    right: -15px;
}

.scroll-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-nav-btn:disabled:hover {
    background: white;
    color: #667eea;
    transform: translateY(-50%);
}

.nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: #718096;
    font-weight: 600;
    padding: 15px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #000000;
}

.nav-tabs .nav-link.active {
    color: #018493;
    background: transparent;
}

.nav-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    /*background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);*/
    border-radius: 3px 3px 0 0;
}



@media (max-width: 768px) {
    .offer-items {
        flex: 0 0 280px;
    }

    .scroll-nav-btn {
        width: 40px;
        height: 40px;
    }

    .offer-info-box {
        padding: 25px 20px;
    }

    .offer-post h2 {
        font-size: 2rem;
    }
}

.offer-items {
    position: relative;
    overflow: hidden;
}

.ribbon {
    width: 120px;
    height: 30px;
    background: #28a745;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: -40px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-size: 12px;
}


div#upgradeModal .modal-dialog {
    max-width: 900px;
}

div#upgradeModal .modal-header {
    padding-bottom: 15px !important;
}

div#serviceForms h2 {
    display: none;
}

div#serviceForms form .input-group {
    display: flex;
    justify-content: center;
}

div#serviceForms form .input-group label {
    width: 100%;
}

div#serviceCategoryFromModal .modal-dialog {
    max-width: 900px;
}

#serviceForms .service-form {
    display: none;
}

div#serviceForms {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
}

div#serviceForms>* {
    width: 100%;
    margin-top: 16px;
}

div#serviceForms button.btn.btn-primary {
    width: 100%;
    font-size: 18px;
    height: 48px;
    background-color: #02707C;
    border: 0;
    margin-top: 12px;
}

div#serviceForms .input-group input,
div#serviceForms .input-group textarea,
div#serviceForms .input-group select {
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    font-size: 14px;
    width: 100%;
}

div#serviceForms label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
    display: block !important;
}

div#serviceForms {
    /* padding: 20px 20px; */
}

select#serviceCategory {
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    box-shadow: 0px 0px 0px;
    font-size: 14px;
}

.mb-3.sel-serv-cc {
    margin-bottom: 0 !important;
}

.service-form form>.mb-3.input-group {
    width: 49%;
}

.service-form form {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
}

input[type="date"] {
    text-transform: uppercase !important;
}

input[type="datetime-local"] {
    text-transform: uppercase !important;
}



.icon-warning {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: none;
}

.list-unstyled li {
    font-size: 14px;
}

/* Page Layout */
.plans-subsc {
    padding: 2rem 0;
}

.plans-subsc .card {
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

/* Tabs Styling */
.nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 3rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 2rem;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #212529;
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link.active {
    color: #212529;
    background: transparent;
    border-bottom: 2px solid #212529;
}

/* Plan Cards Grid */
.plans-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem !important;
}

/* Individual Plan Card */
.offer-items {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-items.upgrade-plan {
    background: #fff;
}

.offer-items.upgrade-plan:hover {
    border-color: #212529;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


/* Buttons */
.offer-butn {
    margin-top: auto;
}

.offer-butn .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-butn .btn:not(.btn-success) {
    background: #212529;
    color: white;
    border-color: #212529;
}

.offer-butn .btn:not(.btn-success):hover {
    background: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.offer-butn .btn-success {
    background: #198754;
    border-color: #198754;
    cursor: default;
}

.offer-butn .btn-success.disabled {
    opacity: 1;
}

/* Modal Improvements */
.modal-content {
    border-radius: 16px;
}

.modal-header {
    padding: 1.5rem 2rem 1rem;
}

.modal-body {
    padding: 0 2rem 1rem;
}

.modal-footer {
    padding: 1rem 2rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .offer-post h2 {
        font-size: 2rem;
    }

    .scroll-wrapper {
        padding: 0 2rem;
    }

    .scroll-nav-btn {
        width: 40px;
        height: 40px;
    }

    .scroll-container .offer-items {
        min-width: 280px;
    }
}

.profile-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

.profile-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-card h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Avatar Section */
.image-upload-group {
    text-align: center;
}

.image-label {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.avatar-preview {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0198a8;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
    padding: 17px;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.avatar-preview:hover .avatar-overlay {
    opacity: 1;
}

.avatar-overlay i {
    color: white;
    font-size: 32px;
}


.file-input {
    display: none;
}

.upload-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: black;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.upload-btn:hover {
    background-color: #0e7490;
}

.upload-btn i {
    margin-right: 8px;
}

.form-text {
    display: block;
    margin-top: 10px;
    color: #6b7280;
    font-size: 13px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: justify;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.invalid-feedback {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #017481;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #0e7490;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert ul {
    padding-left: 20px;
}

.btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .user-profile {
        padding: 20px;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .profile-card {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .avatar-preview {
        width: 150px;
        height: 150px;
    }
}

.avatar-preview img {
    width: 96%;
    height: 96%;
    object-fit: contain;
    object-position: center;
    /* padding-top: 30px; */
}

.user-avatar img {
    object-fit: cover;
    object-position: center;
}


div#serviceForms input::placeholder,
div#serviceForms textarea::placeholder {
    color: #00000047 !important;
    text-transform: capitalize !important;
}

.service-form form>.mb-3.input-group textarea {
    height: 40px !important;
    min-height: 40px !important;
}

/* Active Subscription Card */
.active-subscription {
    background: linear-gradient(242deg, #03282C 0%, #009EAF 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.active-subscription h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.active-plan-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.plan-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.plan-price {
    text-align: right;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    opacity: 0.9;
}

.subscription-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
}

.no-active {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.no-active i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.no-active h3 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.no-active p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: black;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 158, 175, 0.4);
    color: white;
}

/* History Section */
.history-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.history-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.history-count {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Subscription History Table */
.subscription-table {
    width: 100%;
    border-collapse: collapse;
}

.subscription-table thead {
    background: var(--gray-50);
}

.subscription-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-table td {
    padding: 1rem;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.subscription-table tbody tr:hover {
    background: var(--gray-50);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.expired {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.cancelled {
    background: #e5e7eb;
    color: #374151;
}

.status-badge i {
    font-size: 0.75rem;
}

/* Plan Name Cell */
.plan-name-cell {
    font-weight: 600;
    color: var(--gray-900);
}

.plan-type {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 0.25rem;
}

/* Amount Cell */
.amount-cell {
    font-weight: 600;
    color: var(--gray-900);
}

/* Billing Period Badge */
.billing-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--gray-100);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: capitalize;
}

/* Empty State */
.empty-history {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-600);
}

.empty-history i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.stat-icon.primary {
    background: rgba(0, 158, 175, 0.1);
    color: var(--light-primary);
}

.stat-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Current Subscription Card */
.current-subscription {
    background: #02555e;
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.current-subscription h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.subscription-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Transactions Section */
.transactions-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

/* Transaction Table */
.transaction-table {
    width: 100%;
    border-collapse: collapse;
}

.transaction-table thead {
    background: var(--gray-50);
}

.transaction-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-table td {
    padding: 1rem;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.transaction-table tbody tr:hover {
    background: var(--gray-50);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.succeeded {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.failed {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.refunded {
    background: #e5e7eb;
    color: #374151;
}

/* Action Button */
.btn-action {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--gray-300);
    background: white;
    color: var(--gray-700);
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-action:hover {
    border-color: var(--light-primary);
    color: var(--light-primary);
}

/* Payment Method Display */
.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-method i {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-600);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.signature-pad-container {
    position: relative;
    width: 100%;
    height: 220px;
    border: 3px dashed #dee2e6;
    background: #fff;
}

.signature-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    cursor: crosshair;
    z-index: 10;
}

div#authorizationModal .modal-header {
    background: black !IMPORTANT;
}

div#authorizationModal .modal-body {
    padding: 50px;
}

div#authorizationModal .text-primary {
    color: #009eaf !important;
}


.font-preview {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.font-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.font-preview.active {
    background-color: #000000;
    color: white;
    border-color: #009eaf;
}

.btn-check:checked+.font-preview {
    background-color: #009eaf;
    color: white;
    border-color: #009eaf;
}

.signature-preview-box {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background: white;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.typed-signature-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #000;
    padding: 10px;
    min-height: 80px;
}

#authorizationModal .modal-dialog {
    max-width: 850px;
}

#confirmAuthorization:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.lead {
    font-size: 1.1rem;
}

.signature-type-selection .btn-group {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/*responsive css*/
@media (max-width: 1025px) {
    
  .user-plan-benefits .row {
        display: flex;
        justify-content: center;
    }
    
    .user-plan-benefits .row .col-md-3.col-sm-6.mb-3 {
        flex: 0 0 auto;
        width: 33%;
    }
    
    .user-plan-benefits .row .mb-1 {
            font-size: 18px;
    }
    
    .plans-subsc .card-body.pt-4 .plans-grid .offer-items.upgrade-plan span.plan {
        font-size: 11px;
    }
    
    .plans-subsc .card-body.pt-4 .plans-grid {
        gap: 0.5rem;
    }
    
    .plans-subsc .card-body.pt-4 .plans-grid .offer-post h2 {
        font-size: 24px;
        margin-top: 0;
    }
    
    .plans-subsc .card-body.pt-4  button.btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .offer-items .offer-info-box li {
        font-size: 12px !important;
        line-height: 18px;
    }
    
    .offer-items .offer-info-box a {
        font-size: 12px;
        line-height: 15px;
    }
    
    .offer-items .offer-info-box {
        padding: 20px 15px 20px 15px;
    }
    
    .offer-items .offer-info-box .offer-content {
        height: 140px;
        max-height: 160px;
        padding-bottom: 10px;
    }
    
    .offer-info-box {
        height: 400px !important;
    }
    
    .subscription-table th {
        padding: 0.40rem;
    }
    
    .subscription-table td {
        padding: 0.5rem;
        font-size: 12px;
    }
    
    .status-badge.active {
        font-size: 12px;
    }
    
    .transaction-table th {
        padding: 0.5rem;
        font-size: 12px;
    }
    
    .transaction-table td {
        padding: 0.5rem;
        font-size: 12px;
    }
    
    div.dataTables_wrapper div.dataTables_filter input {
        width: 100% !important;
        margin-left: 0;
    }
    
    table.dataTable tbody td a {
        font-size: 12px;
        margin-bottom: 5px;
        padding: 10px 10px;
    }
    
    table.dataTable tbody td {
        font-size: 12px;
    }
    
    table.dataTable thead.table-secondary th {
        font-size: 14px;
    }
    
    .us-subs-un h5 {
        font-size: 18px;
    }
    
    .share-re-box {
        margin-bottom: 20px;
    }
    
    .transactions-section .section-header h2 {
        font-size: 1.15rem;
    }
    
    .transactions-section .table-responsive tr th {
        padding: 0.2rem;
    }
    
    .transactions-section .table-responsive tbody tr td {
        padding: 0.2rem;
    }
    
    .transactions-section .table-responsive tbody tr td span.status-badge.succeeded {
        padding: 0.2rem 0.4rem;
        font-size: 12px;
    }
    
    .transactions-section .table-responsive tbody tr td strong font {
        font-size: 14px;
    }
    
    div#serviceForms label {
        font-size: 14px;
    }
    
    div#serviceForms .input-group input {
        font-size: 13px;
        padding: 8px 8px 8px 0;
    }
    
    button#reqBtn {
        font-size: 15px;
    }
    
    .share-re-box button.btn.btn-dark {
        font-size: 14px;
        padding: 10px 24px;
    }
    
    .plans-subsc li.nav-item button {
        padding: 10px 25px;
        font-size: 16px;
    }
    
}

@media (max-width: 992px) {
    
    .plans-grid {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .plans-grid .offer-items.upgrade-plan {
        width: 50% !important;
        flex: 0 0 49% !important;
    }
    
    .offer-items.active-plan {
        width: 50% !important;
        flex: 0 0 49% !important;
    }
    
    .main-page-wrapper .card-body {
        padding: 20px;
    }
    
    .subscription-table th {
        padding: 0.20rem;
        font-size: 12px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .dash-pagetitle h3 {
        font-size: 20px !important;
    }
    
    nav ol.breadcrumb li a {
        font-size: 14px;
    }

    table#requestsTable thead.table-secondary th {
        font-size: 12px;
    }
    
    table#requestsTable tbody td a {
        font-size: 10px;
    }
    
    table#requestsTable tbody td  span.status-badge.vip {
        font-size: 10px;
    }

    .us-subs-un h5 {
        font-size: 16px;
    }
    
    .us-subs-un li.list-group-item {
        padding: 10px;
    }

    .request-details-card .card-header h3 {
        font-size: 20px;
    }
    
    .card-header .act-req-btn button {
        font-size: 14px;
        padding: 7px 14px;
        gap: 5px;
    }
    
    .card-header .act-req-btn button span.me-2 {
        margin: 0 !important;
    }
    
    .card-header  a.btn.btn-secondary {
        padding: 7px 14px;
        font-size: 14px;
        justify-content: center;
    }
    
    .card-header  .act-req-btn {
        display: flex;
        flex-direction: column;
    }
    
    .req-details-po .table-responsive th {
        padding: 10px;
        font-size: 14px;
    }
    
    .req-details-po .table-responsive td {
        padding: 10px;
        font-size: 14px;
    }
    
    .req-details-po .table-responsive td button.btn.btn-dark {
        font-size: 14px;
        padding: 10px 20px;
    }

    .auth-wrapper {
        background-size: 50% !important;
    }
    
}

@media (max-width: 769px) {

    .mobile-toggle i.fas.fa-bars {
        font-size: 24px;
    }
    
    nav#sidebar {
        height: 100%;
        overflow: scroll;
    }
    
    .dash-pagetitle h3 {
        font-size: 18px !important;
    }
    
    .main-page-wrapper .card-body {
        padding: 15px;
    }
    
    .main-page-wrapper .card-body h4.mb-1 {
        font-size: 16px;
    }
    
    .main-page-wrapper .card-body p.text-muted.mb-0 {
        font-size: 12px;
    }

    .offer-items .offer-info-box .offer-content {
        height: 115px;
        max-height: 115px;
    }

    .plans-subsc li.nav-item button {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .plans-grid .offer-items.upgrade-plan {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .user-plan-benefits .row .col-md-3.col-sm-6.mb-3 {
        flex: 0 0 auto;
        width: 49%;
    }

    .offer-items.active-plan {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .stat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-form form {
        display: flex;
        flex-direction: column;
    }
    
    .service-form form .mb-3.input-group {
        width: 100%;
    }
    
    .service-form form .mb-3.input-group .row {
        width: 100%;
    }
    
    .service-form form .mb-3.input-group .row .col-md-6 {
        padding: 0;
    }

    table#requestsTable tbody td a {
        width: 100%;
        font-size: 12px;
        justify-content: center;
    }

    .bookcall-profile .bookcall-container {
        width: 100%;
    }

    .request-details-card .card-header {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    
    .request-details-card .card-header .act-req-btn {
        flex-direction: row;
    }
    
    .request-details-card .card-header .act-req-btn button.btn.btn-light {
        padding: 10px 20px;
    }
    
    .request-details-card .card-header  a.btn.btn-secondary {
        padding: 10px 20px;
    }
    
    .auth-wrapper {
        background: none !important;
    }
    
}

@media (max-width: 480px) {
    
    .req-details-po .table-responsive th {
        padding: 5px;
        font-size: 12px;
    }
    
    .req-details-po .table-responsive td {
        font-size: 12px;
        padding: 5px;
    }
    
    .req-details-po .table-responsive td button.btn.btn-dark {
        padding: 7px 14px;
        font-size: 10px;
    }
    
    .req-details-po .table-responsive span.status-badge.vip {
        font-size: 10px;
    }

    .request-details-card .card-header h3 {
        font-size: 16px;
    }
    
    .request-details-card .card-header .act-req-btn button.btn.btn-light {
        font-size: 12px;
        padding: 7px 12px;
    }
    
    .request-details-card .card-header a.btn.btn-secondary {
        font-size: 12px;
        padding: 7px 12px;
    }

    .active-subscription {
        padding: 1rem;
    }
    
    .active-subscription .plan-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        row-gap: 20px;
    }
    
    .active-subscription .plan-header .plan-meta {
        justify-content: center;
    }
    
    .active-subscription .subscription-info {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .history-header h2 {
        font-size: 14px;
    }
    
    .history-section {
        padding: 1rem;
    }
    
}
/*responsive css*/



