/* Modern Color Palette - Afriregister Brand */
:root {
    /* Primary Brand Colors */
    --primary-color: #0056b3;
    /* Strong Blue */
    --secondary-color: #004494;
    /* Darker Blue */
    --accent-color: #ffd700;
    /* Gold/Yellow */

    /* Functional Colors */
    --text-color: #333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --highlight-color: #f0f9ff;
    /* Light Blue Background */

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Navbar & Top Bar */
.top-bar {
    position: relative;
    z-index: 1050 !important;
    overflow: visible !important;
}

.top-bar .container,
.top-bar-right,
.top-bar .dropdown {
    overflow: visible !important;
}

.top-bar .dropdown-menu {
    z-index: 1060 !important;
}

.main-header.sticky-top {
    z-index: 1020 !important;
}

.navbar-custom {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Domain Search Box */
.domain-search-wrapper {
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    /* Pill shape */
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    align-items: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.domain-search-input {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    flex-grow: 1;
    outline: none;
    border-radius: 50px 0 0 50px;
    color: var(--text-color);
}

.domain-search-select {
    border: none;
    border-left: 1px solid #eee;
    padding: 15px 15px;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    outline: none;
    color: var(--primary-color);
}

.domain-search-btn {
    background: var(--accent-color);
    color: #000;
    /* Contrast for gold */
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domain-search-btn:hover {
    background: #e6c200;
    /* Darker gold */
    transform: scale(1.05);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--highlight-color);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-header {
    background: var(--highlight-color);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 10px;
}

.pricing-body {
    padding: 30px;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer (Updated to match Blue branding slightly) */
.footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 5px solid var(--accent-color);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Utility */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ============================================
   HOSTING PLANS PAGE STYLES
   ============================================ */

/* Hosting Hero Section */
.hosting-hero {
    background-color: var(--primary-color);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hosting-hero h1 {
    color: var(--white);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hosting-hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Plan Category Header */
.plan-category-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
}

.plan-category-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.75rem;
    font-family: var(--font-heading);
}

/* Hosting Card */
.hosting-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hosting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-color);
}

/* Featured Card */
.hosting-card-featured {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
    z-index: 5;
}

.hosting-card-featured:hover {
    transform: translateY(-8px) scale(1.03);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f0c800 100%);
    color: #000;
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Card Header */
.hosting-card-header {
    background: #fcfdfe;
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.package-name {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Package Pricing */
.package-pricing {
    margin-top: 15px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-amount .currency {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-right: 4px;
    color: #94a3b8;
    font-weight: 600;
}

.price-amount .amount {
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-save {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 15px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Card Body */
.hosting-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #28a745;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-name {
    color: var(--text-color);
    font-size: 0.925rem;
    font-weight: 600;
}

.feature-value {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Package Order Button */
.btn-package-order {
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-package-order.btn-primary {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-package-order.btn-primary:hover {
    background: #f0c800;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    color: #000;
}

.btn-package-order.btn-outline-primary {
    background: #f1f5f9;
    color: var(--primary-color);
    border: 2px solid transparent;
}

.btn-package-order.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

/* Section Divider */
.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #dee2e6, transparent);
}

/* Features Banner */
.features-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.banner-feature {
    padding: 20px;
    transition: all 0.3s ease;
}

.banner-feature:hover {
    transform: translateY(-5px);
}

.banner-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.banner-feature h5 {
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-heading);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hosting-card-featured {
        transform: scale(1);
    }

    .hosting-card-featured:hover {
        transform: translateY(-8px);
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hosting-hero {
        padding: 40px 0;
    }

    .hosting-hero h1 {
        font-size: 2rem;
    }

    .plan-category-header {
        text-align: center;
    }

    .plan-category-header .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .banner-icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   DASHBOARD PAGE STYLES
   ============================================ */

/* Dashboard Welcome Section */
.dashboard-welcome h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Dashboard Service Cards */
.dashboard-service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Service Card Headers with Gradients */
.service-card-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Service-specific card backgrounds */
.domains-card .service-card-header {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
}

.hosting-card .service-card-header {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.vps-card .service-card-header {
    background: linear-gradient(135deg, #fd7e14 0%, #e8590c 100%);
}

.invoices-card .service-card-header {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.tickets-card .service-card-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Service Icon Badge */
.service-icon-badge {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

/* Service Header Content */
.service-header-content {
    flex-grow: 1;
}

.service-title {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-count {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

/* Service Card Body */
.service-card-body {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Service Stats List */
.service-stats-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.stat-badge {
    background: var(--highlight-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Service Action Button */
.btn-service-action {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-service-action:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

/* Quick Actions Section */
.quick-actions-section {
    margin-top: 50px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.75rem;
}

/* Action Cards */
.action-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.action-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.action-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Dashboard */
@media (max-width: 992px) {
    .service-count {
        font-size: 2.5rem;
    }

    .service-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .dashboard-welcome h2 {
        font-size: 1.75rem;
    }

    .service-card-header {
        padding: 20px;
        gap: 15px;
    }

    .service-count {
        font-size: 2rem;
    }

    .service-icon-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-card-body {
        padding: 20px;
    }

    .action-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .action-icon {
        margin-bottom: 10px;
    }
}

/* HTMX Indicator Styling */
.htmx-indicator {
    display: none;
    opacity: 0;
    transition: opacity 200ms ease-in;
}

.htmx-request .htmx-indicator {
    display: inline-block;
    opacity: 1;
}

.htmx-request.htmx-indicator {
    display: inline-block;
    opacity: 1;
}

.text-gold {
    color: var(--accent-color) !important;
}

.bg-gold {
    background-color: var(--accent-color) !important;
}

/* Dropdown Refinements */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px;
    padding: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--highlight-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* TLD Selection Chips */
.tld-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.tld-chip {
    position: relative;
    cursor: pointer;
}

.tld-chip input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tld-chip .chip-label {
    display: block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tld-chip:hover .chip-label {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tld-chip input:checked+.chip-label {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Domain Search Page Layout */
.results-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 400px;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ============================================
   MODERN DASHBOARD & SIDEBAR
   ============================================ */

.dashboard-container {
    padding: 40px 0;
    background-color: #fcfdfe;
    min-height: 100vh;
}

.dashboard-sidebar {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f2f5;
    margin-bottom: 15px;
}

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

.user-avatar-circle {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.dashboard-nav-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #64748b;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    gap: 12px;
}

.dashboard-nav-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.dashboard-nav-item:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    transform: translateX(5px);
}

.dashboard-nav-item.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.dashboard-nav-item.active i {
    color: white;
}

/* Dashboard Service Cards Redesign */
.modern-stat-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.modern-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-gradient-bg {
    padding: 25px;
    height: 100px;
    position: relative;
}

.stat-icon-wrapper {
    position: absolute;
    bottom: -20px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.stat-content {
    padding: 35px 25px 25px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    font-family: var(--font-heading);
}

/* Service Gradients */
.bg-grad-blue {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

.bg-grad-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.bg-grad-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.bg-grad-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.bg-grad-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Breadcrumb Styling for Dashboard */
.breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #6c757d;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #212529;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 0.75rem;
    color: #ced4da !important;
    vertical-align: middle;
}

/* Status Badge Soft Colors */
.badge.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.badge.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.badge.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
    color: #997404;
}

.badge.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
    color: #087990;
}

.badge.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}