/* Additional Custom Styles */

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.95) 0%, rgba(10, 10, 26, 0.85) 100%);
    backdrop-filter: blur(30px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #00d4ff, #9d4edd, #ff006e, #00d4ff) 1;
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 25px 0;
}

.site-title {
    font-family: 'Exo 2', 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.site-title::before {
    display: none;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #9d4edd);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 15px #00d4ff;
}

.nav-links li a:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid #00d4ff;
    border-radius: 15px;
    padding: 20px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
}

.dropdown-menu a:hover {
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    padding-left: 35px;
}

.dropdown-menu a::before {
    display: none !important;
}

.dropdown-menu i {
    margin-right: 10px;
    color: #00d4ff;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-count {
    background: var(--neon-pink);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-left: 3px;
}

.btn-login, .btn-register {
    padding: 7px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-login {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    color: #00d4ff;
    border: 2px solid #00d4ff;
    background: transparent;
}

.btn-login:hover {
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    color: white;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #00d4ff;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00d4ff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 25px;
}

.mobile-nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #00d4ff;
    padding-left: 20px;
}

.mobile-dropdown {
    margin-top: 15px;
    padding-left: 20px;
}

.mobile-dropdown a {
    font-size: 18px !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 10px 0 !important;
}

.mobile-nav-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-actions a {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 140px;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--neon-blue);
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    margin: 30px 0;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price span {
    font-size: 20px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: 900;
    font-size: 20px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.5);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    color: var(--neon-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
.site-footer {
    background: rgba(5, 5, 16, 0.95);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    margin-top: 100px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--neon-blue);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-blue);
    color: white;
    box-shadow: 0 0 20px var(--neon-blue);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info li i {
    color: var(--neon-blue);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.payment-methods i {
    font-size: 24px;
    color: var(--neon-blue);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(179, 0, 255, 0.1));
    padding: 80px 0;
    text-align: center;
    border-radius: 30px;
    margin: 0 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-bottom-content {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Profile Page Styles */
.profile-section {
    padding: 100px 20px 60px;
    min-height: 80vh;
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-sidebar {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.profile-user-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-user-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.user-email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.profile-nav-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
}

.profile-nav-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: var(--neon-blue);
    border-left: 3px solid var(--neon-blue);
}

.profile-nav-item.logout {
    color: #ff006e;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 20px;
}

.profile-nav-item.logout:hover {
    background: rgba(255, 0, 110, 0.1);
}

.profile-content {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.profile-tab {
    display: none;
}

.profile-tab.active {
    display: block;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--neon-blue);
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.quick-actions {
    margin-bottom: 40px;
}

.quick-actions h2 {
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.recent-orders, .orders-table {
    margin-top: 30px;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 15, 35, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.orders-table th {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px;
    text-align: left;
    color: var(--neon-blue);
    font-weight: 600;
}

.orders-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.orders-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-completed {
    background: rgba(6, 255, 165, 0.2);
    color: var(--neon-green);
}

.status-processing {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.view-order {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 500;
}

.view-order:hover {
    text-decoration: underline;
}

.vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vps-card {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
}

.vps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.vps-header h3 {
    margin: 0;
    color: #fff;
}

.vps-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.vps-status.active {
    background: rgba(6, 255, 165, 0.2);
    color: var(--neon-green);
}

.vps-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.detail-item i {
    color: var(--neon-blue);
    width: 20px;
}

.vps-actions {
    display: flex;
    gap: 10px;
}

.billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.billing-card {
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
}

.billing-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.settings-form {
    max-width: 600px;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.no-data a {
    color: var(--neon-blue);
    text-decoration: none;
}

.no-data a:hover {
    text-decoration: underline;
}

/* VPS Shop Page */
.vps-shop-section {
    padding: 100px 20px 60px;
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.features-section {
    margin-top: 80px;
    text-align: center;
}

.features-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.add-to-cart-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.add-to-cart-btn.added {
    background: linear-gradient(135deg, var(--neon-green), #00b894);
}

@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .orders-table {
        overflow-x: auto;
    }
    
    .billing-grid {
        grid-template-columns: 1fr;
    }
}

