/* ============================================
   HOSTIKO THEME - FOSSBilling Client Area
   ============================================ */

:root {
    --hostiko-primary: #0C4DA2;
    --hostiko-primary-dark: #0a3d82;
    --hostiko-accent: #f4e474;
    --hostiko-sidebar-bg: #1a1f36;
    --hostiko-sidebar-width: 260px;
    --hostiko-header-height: 70px;
    --hostiko-body-bg: #f0f4f8;
    --hostiko-card-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --hostiko-card-radius: 12px;
    --hostiko-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--hostiko-font);
    background-color: var(--hostiko-body-bg);
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   SIDEBAR
   ============================================ */
.hostiko-wrapper {
    display: flex;
    min-height: 100vh;
}

.hostiko-sidebar {
    width: var(--hostiko-sidebar-width);
    background: var(--hostiko-sidebar-bg);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

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

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sidebar-logo {
    height: 32px;
    width: auto;
}

.sidebar-brand-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
}

.sidebar-nav .nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav .nav-item {
    margin-bottom: 2px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.65);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.sidebar-nav .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.sidebar-nav .nav-link.active {
    color: #fff;
    background: var(--hostiko-primary);
}

.sidebar-balance {
    padding: 16px 12px;
    margin-top: auto;
}

.balance-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.balance-label {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-bottom: 4px;
}

.balance-amount {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.hostiko-main {
    flex: 1;
    margin-left: var(--hostiko-sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */
.hostiko-header {
    height: var(--hostiko-header-height);
    background: #fff;
    border-bottom: 1px solid #e8edf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-left {
    display: flex;
    align-items: center;
}

.sidebar-toggle {
    color: #333;
    font-size: 20px;
    padding: 8px;
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    color: #666;
    font-size: 18px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.header-icon:hover {
    color: var(--hostiko-primary);
    background: #f0f4f8;
}

.header-user {
    position: relative;
}

.header-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border: none;
    background: none;
    cursor: pointer;
}

.header-user-btn img,
.header-user-btn .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.header-user-name {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.header-user-btn .fa-chevron-down {
    font-size: 12px;
    color: #999;
}

/* ============================================
   CONTENT AREA
   ============================================ */
.hostiko-content {
    flex: 1;
    padding: 24px 32px;
}

/* Breadcrumb */
.breadcrumb {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 24px;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--hostiko-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #999;
}

/* ============================================
   DASHBOARD CARDS
   ============================================ */
.hostiko-card {
    background: #fff;
    border-radius: var(--hostiko-card-radius);
    box-shadow: var(--hostiko-card-shadow);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e8edf2;
}

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

.hostiko-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.hostiko-card-title .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.card-icon.blue {
    background: #e8f0fe;
    color: var(--hostiko-primary);
}

.card-icon.green {
    background: #e6f7ed;
    color: #28a745;
}

.card-icon.orange {
    background: #fff3e0;
    color: #f57c00;
}

.card-icon.purple {
    background: #f3e5f5;
    color: #7b1fa2;
}

.hostiko-card-actions {
    display: flex;
    gap: 8px;
}

/* Profile Card - Special Style */
.profile-card {
    background: linear-gradient(135deg, #0C4DA2 0%, #1565c0 100%);
    color: #fff;
    border: none;
}

.profile-card .hostiko-card-title {
    color: #fff;
}

.profile-card .card-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.profile-card .profile-info dt {
    color: rgba(255,255,255,0.7);
}

.profile-card .profile-info dd {
    color: #fff;
    font-weight: 500;
}

.profile-card .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-card .btn-outline-light:hover {
    background: #fff;
    color: var(--hostiko-primary);
    border-color: #fff;
}

/* Stats Row */
.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f8;
}

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

.stat-label {
    color: #666;
    font-size: 14px;
}

.stat-value {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-hostiko {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-hostiko-primary {
    background: var(--hostiko-primary);
    color: #fff;
}

.btn-hostiko-primary:hover {
    background: var(--hostiko-primary-dark);
    color: #fff;
}

.btn-hostiko-outline {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-hostiko-outline:hover {
    background: #f5f5f5;
    color: #333;
}

.btn-hostiko-accent {
    background: var(--hostiko-accent);
    color: #333;
    font-weight: 600;
}

.btn-hostiko-accent:hover {
    background: #e8d860;
    color: #333;
}

/* ============================================
   RECENT ORDERS / EMAILS LIST
   ============================================ */
.hostiko-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hostiko-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.2s;
}

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

.hostiko-list-item:hover {
    background: #f8fafc;
}

.hostiko-list-item a {
    text-decoration: none;
    color: inherit;
}

.hostiko-empty {
    padding: 24px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.hostiko-footer {
    padding: 20px 32px;
    text-align: center;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #e8edf2;
    background: #fff;
}

/* ============================================
   PUBLIC PAGES (Landing)
   ============================================ */
.hostiko-public .hostiko-nav {
    background: rgba(0,19,73,0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hostiko-public .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hostiko-public .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.hostiko-public .nav-logo img {
    height: 36px;
}

.hostiko-public .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.hostiko-public .nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.hostiko-public .nav-links a:hover {
    color: var(--hostiko-accent);
}

.hostiko-public .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero Section */
.hostiko-hero {
    background: linear-gradient(135deg, #001349 0%, #0C4DA2 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hostiko-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(244,228,116,0.1);
}

.hostiko-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Domain Checker */
.domain-checker {
    max-width: 600px;
    margin: 0 auto;
}

.domain-input-group {
    display: flex;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
}

.domain-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.domain-input-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.domain-input-group .btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/* Pricing Section */
.hostiko-pricing {
    padding: 80px 0;
    background: #fff;
}

.hostiko-pricing .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.hostiko-pricing .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.hostiko-pricing .section-title p {
    color: #666;
    font-size: 16px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid #e8edf2;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--hostiko-primary);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hostiko-accent);
    color: #333;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--hostiko-primary);
    margin: 16px 0;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #28a745;
    font-size: 14px;
}

/* Features Section */
.hostiko-features {
    padding: 80px 0;
    background: var(--hostiko-body-bg);
}

.feature-box {
    text-align: center;
    padding: 32px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--hostiko-card-shadow);
    transition: transform 0.3s;
}

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

.feature-box .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.hostiko-testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.testimonial-author-info span {
    font-size: 12px;
    color: #999;
}

/* Footer - Public */
.hostiko-public-footer {
    background: var(--hostiko-sidebar-bg);
    color: #fff;
    padding: 60px 0 24px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--hostiko-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .hostiko-sidebar {
        transform: translateX(-100%);
    }

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

    .hostiko-main {
        margin-left: 0;
    }

    .hostiko-content {
        padding: 16px;
    }

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

    .hero-title {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hostiko-public .nav-links {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .domain-input-group {
        flex-direction: column;
        border-radius: 16px;
    }

    .domain-input-group .btn {
        border-radius: 12px;
    }

    .hostiko-card {
        padding: 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ============================================
   DARK MODE
   ============================================ */
[data-bs-theme="dark"] {
    --hostiko-body-bg: #1a1f36;
    --hostiko-card-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

[data-bs-theme="dark"] .hostiko-header {
    background: #1a1f36;
    border-bottom-color: #2d3555;
}

[data-bs-theme="dark"] .hostiko-card {
    background: #2d3555;
    border-color: #3d4565;
}

[data-bs-theme="dark"] .hostiko-footer {
    background: #1a1f36;
    border-top-color: #2d3555;
}

[data-bs-theme="dark"] .stat-label,
[data-bs-theme="dark"] .stat-value {
    color: #ccc;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.wait {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    color: var(--hostiko-primary);
}

/* ============================================
   BOOTSTRAP CARD OVERRIDES
   ============================================ */
.card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: var(--hostiko-card-radius);
    box-shadow: var(--hostiko-card-shadow);
    margin-bottom: 24px;
}

.card-header {
    background: #fff;
    border-bottom: 1px solid #e8edf2;
    padding: 16px 24px;
    border-radius: var(--hostiko-card-radius) var(--hostiko-card-radius) 0 0 !important;
}

.card-body {
    padding: 24px;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
    margin: 0;
    font-weight: 600;
}

/* ============================================
   AUTH PAGES (Login / Register)
   ============================================ */
.page-login,
.page-signup {
    background: var(--hostiko-body-bg);
    min-height: 100vh;
}

.page-login .card,
.page-signup .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.page-login .card-body,
.page-signup .card-body {
    padding: 32px;
}

.page-login h5,
.page-signup h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.page-login .form-control,
.page-signup .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.page-login .form-control:focus,
.page-signup .form-control:focus {
    border-color: var(--hostiko-primary);
    box-shadow: 0 0 0 3px rgba(12,77,162,0.15);
}

.page-login .btn-primary,
.page-signup .btn-primary {
    background: var(--hostiko-primary);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
}

.page-login .btn-primary:hover,
.page-signup .btn-primary:hover {
    background: var(--hostiko-primary-dark);
}

.page-login .btn-outline-primary,
.page-signup .btn-outline-primary {
    border-color: var(--hostiko-primary);
    color: var(--hostiko-primary);
    border-radius: 8px;
}

.page-login .btn-outline-primary:hover,
.page-signup .btn-outline-primary:hover {
    background: var(--hostiko-primary);
    color: #fff;
}

/* ============================================
   ORDER / PRODUCTS PAGE
   ============================================ */
.order-product .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-product .card-header h1 {
    font-size: 24px;
}

/* Product Groups */
.hosting-plan,
.pricing-block,
.product-group {
    border: 2px solid #e8edf2;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.2s;
    background: #fff;
}

.hosting-plan:hover,
.pricing-block:hover,
.product-group:hover {
    border-color: var(--hostiko-primary);
    box-shadow: 0 4px 16px rgba(12,77,162,0.1);
}

.hosting-plan.selected,
.pricing-block.selected,
.product-group.selected {
    border-color: var(--hostiko-primary);
    background: rgba(12,77,162,0.03);
}

/* Order Steps */
.checkout-steps,
.order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8edf2;
}

.checkout-step,
.order-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #999;
}

.checkout-step.active,
.order-step.active {
    color: var(--hostiko-primary);
    font-weight: 600;
}

.checkout-step .step-number,
.order-step .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8edf2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.checkout-step.active .step-number,
.order-step.active .step-number {
    background: var(--hostiko-primary);
    color: #fff;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--hostiko-primary);
    box-shadow: 0 0 0 3px rgba(12,77,162,0.15);
}

.form-check-input:checked {
    background-color: var(--hostiko-primary);
    border-color: var(--hostiko-primary);
}

/* ============================================
   TABLE STYLES
   ============================================ */
.table {
    border-color: #e8edf2;
}

.table th {
    background: #f8fafc;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    border-color: #e8edf2;
}

.table td {
    border-color: #e8edf2;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(12,77,162,0.03);
}

/* ============================================
   ALERT STYLES
   ============================================ */
.alert {
    border-radius: 10px;
    border: none;
    padding: 16px 20px;
}

.alert-success {
    background: #e6f7ed;
    color: #155724;
}

.alert-danger {
    background: #fce4ec;
    color: #721c24;
}

.alert-warning {
    background: #fff3e0;
    color: #856404;
}

.alert-info {
    background: #e8f0fe;
    color: #0c4da2;
}

/* ============================================
   BADGE STYLES
   ============================================ */
.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    gap: 4px;
}

.page-link {
    border-radius: 8px;
    border: 1px solid #e8edf2;
    color: #333;
    padding: 8px 14px;
    font-size: 14px;
}

.page-link:hover {
    background: var(--hostiko-primary);
    border-color: var(--hostiko-primary);
    color: #fff;
}

.page-item.active .page-link {
    background: var(--hostiko-primary);
    border-color: var(--hostiko-primary);
}

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown-menu {
    border: 1px solid #e8edf2;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    padding: 8px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f0f4f8;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 24px;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--hostiko-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #999;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #ccc;
}

/* ============================================
   LINK STYLES
   ============================================ */
a {
    color: var(--hostiko-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--hostiko-primary-dark);
}

/* ============================================
   CONTAINER OVERRIDE
   ============================================ */
.container {
    max-width: 1200px;
}
