a:hover {
    text-decoration: none;

}
a {
    text-decoration: none;

}
.main-content {
    margin-top: 56px;
}
/* Base Card Styles */
.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
    margin: 0.5rem;
    overflow: visible; /* Allow tables to scroll horizontally */
    box-sizing: border-box;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.card:hover {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-1px) translateZ(0);
}

.card-body {
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 12px 12px;
    margin: 0;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Dashboard Card Styles */
.dashboard-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dashboard-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    border-radius: 12px 12px 0 0;
    padding: 1.25rem 1.5rem;
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

/* Metric Card Styles */
.metric-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #dee2e6;
}

.metric-content {
    padding: 0;
    overflow: visible !important;
}
/* Clean White Footer Styles */
.footer-area {
    background: #ffffff;
    color: #374151;
    padding: 80px 0 30px;
    border-top: 1px solid #e5e7eb;
}

.bg-default-3 {
    background: #ffffff;
}

.footer-widgets__title {
    color: #111827;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.footer-widgets__list {
    list-style: none;
    padding: 0;
}

.footer-widgets__list li {
    margin-bottom: 12px;
}

.footer-widgets__list a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 4px 0;
    letter-spacing: 0.01em;
}

.footer-widgets__list a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.footer-widgets__text {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.copyright {
    padding: 30px 0;
    margin-top: 40px;
}

.copyright p {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
}

.border-default-color-3 {
    border-color: #e5e7eb !important;
}

.brand-logo h3 {
    color: #111827 !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer-area {
        padding: 60px 0 25px;
    }

    .footer-widgets__title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-widgets__list li {
        margin-bottom: 10px;
    }

    .footer-widgets__list a {
        font-size: 0.85rem;
        padding: 3px 0;
    }

    .footer-widgets__text {
        font-size: 0.85rem;
    }

    .copyright {
        padding: 25px 0;
        margin-top: 30px;
    }

    .copyright p {
        font-size: 0.8rem;
    }
}/* Modern Clean Navbar Styles */
.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.modern-navbar .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Brand */
.modern-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.025em;
    transition: all 0.2s ease;
}

.modern-navbar .navbar-brand:hover {
    color: #3b82f6;
    transform: scale(1.02);
}

/* Desktop Navigation */
.modern-navbar .navbar-nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-navbar .navbar-nav-desktop .nav-link {
    color: #64748b;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.modern-navbar .navbar-nav-desktop .nav-link:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.04);
}

/* Right side actions */
.modern-navbar .navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-navbar .btn-login {
    color: #64748b;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.modern-navbar .btn-login:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.04);
}

.modern-navbar .btn-register {
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid #0f172a;
}

.modern-navbar .btn-register:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.modern-navbar .btn-dashboard {
    background: #059669;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid #059669;
}

.modern-navbar .btn-dashboard:hover {
    background: #047857;
    border-color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

/* Mobile menu toggle */
.modern-navbar .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modern-navbar .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: #64748b;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.modern-navbar .mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

.modern-navbar .mobile-menu-toggle:hover span {
    background: #0f172a;
}

.modern-navbar .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-navbar .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.modern-navbar .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.modern-navbar .navbar-nav-mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.modern-navbar .navbar-nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.modern-navbar .navbar-nav-mobile .nav-link {
    display: block;
    color: #64748b;
    text-decoration: none;
    padding: 0.75rem 0;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-navbar .navbar-nav-mobile .nav-link:last-child {
    border-bottom: none;
}

.modern-navbar .navbar-nav-mobile .nav-link:hover {
    color: #0f172a;
    padding-left: 0.5rem;
}

.modern-navbar .navbar-nav-mobile .mobile-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modern-navbar .navbar-nav-mobile .mobile-actions .btn-login,
.modern-navbar .navbar-nav-mobile .mobile-actions .btn-register,
.modern-navbar .navbar-nav-mobile .mobile-actions .btn-dashboard {
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-navbar .navbar-container {
        padding: 0 1rem;
        height: 56px;
    }
    
    .modern-navbar .navbar-brand {
        font-size: 1.25rem;
    }
    
    .modern-navbar .navbar-nav-desktop {
        display: none;
    }
    
    .modern-navbar .navbar-actions {
        display: none;
    }
    
    .modern-navbar .mobile-menu-toggle {
        display: flex;
    }
    
    .modern-navbar .navbar-nav-mobile {
        top: 56px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-navbar .navbar-container {
        padding: 0 0.75rem;
    }
    
    .modern-navbar .navbar-brand {
        font-size: 1.125rem;
    }
    
    .modern-navbar .navbar-nav-mobile {
        padding: 0.75rem;
    }
}





/* Documentation pages spacing */
.guest-layout .docs-page main,
.guest-layout .docs-page .main-content,
.guest-layout .docs-page {
    padding-top: 0 !important;
}

.guest-layout .docs-header-wrapper {
    margin-top: 0;
    padding-top: 64px;
}

.guest-layout .docs-sidebar {
    top: 64px;
}

@media (max-width: 768px) {
    .guest-layout .docs-header-wrapper {
        padding-top: 56px;
    }
    
    .guest-layout .docs-sidebar {
        top: 56px;
    }
}/* Clean Button Styles - Centralized */

/* Bootstrap Success Button Override */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}

/* Legacy Action Button Styles - Deprecated, use components instead */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.action-btn.primary {
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.action-btn.primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.action-btn.success {
    background: #28a745;
    color: white;
    border: 1px solid #28a745;
}

.action-btn.success:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.action-btn.outline {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.action-btn.outline:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn i {
    font-size: 0.9rem;
}
/* Clean White Product Page Styles */
.modern-product-page {
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-hero-section {
    background: #ffffff;
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Product Image */
.product-image-wrapper {
    position: relative;
}

.image-container {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-main-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.image-overlay {
    display: none;
}

/* Product Info */
.product-info-section {
    padding: 2rem 0;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #333;
}

.breadcrumb-separator {
    color: #ccc;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Pricing */
.pricing-section {
    margin-bottom: 2rem;
}

.main-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0.25rem;
}

.price-unit {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.subscription-price {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Description */
.product-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Purchase Container */
.purchase-container {
    margin-top: 2rem;
}

/* Purchased Alert */
.purchased-alert {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-icon {
    color: #28a745;
    font-size: 1.5rem;
}

.alert-content h4 {
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.alert-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 200px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.quantity-btn:hover {
    background: #f8f9fa;
    border-color: #999;
    color: #333;
}

.quantity-input {
    width: 80px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    color: #333;
    background: #fff;
}

.quantity-limit {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Purchase Button */
.purchase-button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.purchase-button:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.button-icon,
.button-arrow {
    font-size: 1rem;
}

/* Confirmation Modal */
.confirmation-modal {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.error-alert {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirmation-content {
    text-align: left;
}

.confirmation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.confirmation-icon {
    color: #007bff;
    font-size: 1.5rem;
}

.confirmation-header h3 {
    color: #1a1a1a;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.purchase-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    color: #1a1a1a;
    font-weight: 600;
}

.summary-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.terms-section {
    margin-bottom: 1.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.terms-input {
    margin-top: 0.25rem;
}

.terms-label {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
}

.terms-label a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.terms-label a:hover {
    text-decoration: underline;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.confirm-button {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirm-button:hover {
    background: #218838;
    transform: translateY(-1px);
}

.cancel-button {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cancel-button:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-main-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirm-button,
    .cancel-button {
        width: 100%;
        justify-content: center;
    }
}