/* Fair E Web Host Billing Platform v7 — scoped legacy page styles.
   Generated from former inline page CSS so shared platform-v7.css remains the final cascade authority. */

/* ---- client/account/index ---- */

/* ===== ACCOUNT SETTINGS ENHANCED STYLES ===== */

/* Enhanced Cards */
.fwh-client-account-index .settings-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.fwh-client-account-index .settings-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.fwh-client-account-index .settings-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-account-index .settings-card .card-header h5{
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.fwh-client-account-index .settings-card .card-body{
    padding: 2rem;
}

/* Enhanced Form Inputs */
.fwh-client-account-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-client-account-index .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-client-account-index .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-client-account-index .form-control:disabled{
    background: #f8f9fa;
    cursor: not-allowed;
}

/* Enhanced Buttons */
.fwh-client-account-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-account-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Badge Enhancement */
.fwh-client-account-index .badge-modern{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Smooth animations */
.fwh-client-account-index .fade-in{
    animation: fwh-client-account-index-fadeIn 0.5s ease;
}

@keyframes fwh-client-account-index-fadeIn{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---- client/billing/index ---- */

.fwh-client-billing-index .billing-hero{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 16px; padding: 2rem; color: white;
    margin-bottom: 2rem; box-shadow: 0 8px 24px rgba(13,110,253,0.25);
}
.fwh-client-billing-index .billing-hero h2{ font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.fwh-client-billing-index .billing-hero p{ opacity: 0.9; font-size: 1.1rem; margin: 0; }
.fwh-client-billing-index .billing-stat-card{
    border: none; border-radius: 16px; padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: all 0.3s ease;
}
.fwh-client-billing-index .billing-stat-card:hover{ transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.fwh-client-billing-index .billing-table th{ font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; color: #718096; border-top: none; }
.fwh-client-billing-index .billing-table td{ vertical-align: middle; }
.fwh-client-billing-index .badge-status{ padding: 0.35rem 0.85rem; border-radius: 20px; font-weight: 600; font-size: 0.75rem; }
.fwh-client-billing-index .empty-state{ text-align: center; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; }
.fwh-client-billing-index .empty-state > i{ font-size: 4rem; color: #cbd5e0; margin-bottom: 1rem; }
.fwh-client-billing-index .empty-state p{ color: #718096; margin-bottom: 1.5rem; }
.fwh-client-billing-index .empty-state .btn{ display: inline-flex !important; width: auto !important; min-width: 160px; max-width: 280px; align-items: center; justify-content: center; }
.fwh-client-billing-index .btn-modern{ border-radius: 8px; padding: 0.5rem 1.25rem; font-weight: 600; transition: all 0.3s ease; }
.fwh-client-billing-index .btn-modern:hover{ transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); }


/* ---- client/cart/checkout ---- */

/* ===== CHECKOUT PAGE ENHANCED STYLES ===== */

/* Enhanced Breadcrumb */
.fwh-client-cart-checkout .breadcrumb{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #bbf7d0;
}

.fwh-client-cart-checkout .breadcrumb-item a{
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fwh-client-cart-checkout .breadcrumb-item a:hover{
    color: #15803d;
}

.fwh-client-cart-checkout .breadcrumb-item.active{
    color: #166534;
    font-weight: 700;
}

/* Enhanced Cards */
.fwh-client-cart-checkout .checkout-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-cart-checkout-fadeInUp 0.6s ease;
}

.fwh-client-cart-checkout .checkout-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-client-cart-checkout .checkout-card .card-header h5, .fwh-client-cart-checkout .checkout-card .card-header h6{
    margin: 0;
    font-weight: 700;
}

/* Order Items */
.fwh-client-cart-checkout .order-item{
    padding: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-cart-checkout .order-item:last-child{
    border-bottom: none;
}

.fwh-client-cart-checkout .order-item:hover{
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.fwh-client-cart-checkout .service-type-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.fwh-client-cart-checkout .service-type-badge.shared{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-checkout .service-type-badge.wordpress{ background: #e0e7ff; color: #3730a3; }
.fwh-client-cart-checkout .service-type-badge.woocommerce{ background: #f3e8ff; color: #6b21a8; }
.fwh-client-cart-checkout .service-type-badge.vps{ background: #dbeafe; color: #1e3a8a; }
.fwh-client-cart-checkout .service-type-badge.reseller{ background: #d1fae5; color: #065f46; }
.fwh-client-cart-checkout .service-type-badge.dedicated-cpu{ background: #fee2e2; color: #991b1b; }
.fwh-client-cart-checkout .service-type-badge.email{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-checkout .service-type-badge.ssl{ background: #d1fae5; color: #065f46; }

.fwh-client-cart-checkout .item-details{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.fwh-client-cart-checkout .item-detail{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.fwh-client-cart-checkout .item-detail i{
    color: #16a34a;
    width: 20px;
}

.fwh-client-cart-checkout .item-config{
    background: #f8fafc;
    border-left: 3px solid #16a34a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.fwh-client-cart-checkout .config-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.fwh-client-cart-checkout .config-item:last-child{
    margin-bottom: 0;
}

.fwh-client-cart-checkout .config-item i{
    color: #16a34a;
    width: 16px;
}

/* Payment Options */
.fwh-client-cart-checkout .payment-option{
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.fwh-client-cart-checkout .payment-option:hover{
    border-color: #16a34a !important;
    background: rgba(22, 163, 74, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.fwh-client-cart-checkout .payment-option .form-check-input:checked{
    background-color: #16a34a;
    border-color: #16a34a;
}

.fwh-client-cart-checkout .payment-option .form-check-input:checked ~ .form-check-label{
    color: #166534;
}

/* Enhanced Buttons */
.fwh-client-cart-checkout .btn-checkout{
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-cart-checkout .btn-checkout:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-cart-checkout .btn-primary.btn-checkout{
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
}

.fwh-client-cart-checkout .btn-success.btn-checkout{
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
}

/* Total Summary */
.fwh-client-cart-checkout .total-row{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem;
    border-radius: 8px;
}

.fwh-client-cart-checkout .total-amount{
    font-size: 1.75rem;
    font-weight: 700;
    color: #16a34a;
}

/* Animations */
@keyframes fwh-client-cart-checkout-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fwh-client-cart-checkout .fade-in{
    animation: fwh-client-cart-checkout-fadeIn 0.5s ease;
}

@keyframes fwh-client-cart-checkout-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-cart-checkout .order-item{
        padding: 1rem;
    }
    
    .fwh-client-cart-checkout .total-amount{
        font-size: 1.5rem;
    }
}


/* ---- client/cart/index ---- */

/* ===== SHOPPING CART ENHANCED STYLES ===== */

/* Cart Header */
.fwh-client-cart-index .cart-header{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-client-cart-index-fadeInDown 0.6s ease;
}

.fwh-client-cart-index .cart-header h2{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-cart-index .cart-count{
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

/* Empty Cart State */
.fwh-client-cart-index .empty-cart{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-cart-index-fadeIn 0.6s ease;
}

.fwh-client-cart-index .empty-cart i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-cart-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-cart-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-cart-index .empty-cart h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-cart-index .empty-cart p{
    color: #718096;
    font-size: 1.1rem;
}

/* Cart Card */
.fwh-client-cart-index .cart-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-cart-index-fadeInUp 0.6s ease;
}

.fwh-client-cart-index .cart-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Cart Item */
.fwh-client-cart-index .cart-item{
    padding: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.fwh-client-cart-index .cart-item:last-child{
    border-bottom: none;
}

.fwh-client-cart-index .cart-item:hover{
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.fwh-client-cart-index .cart-item h5{
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-cart-index .service-type-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.fwh-client-cart-index .service-type-badge.shared{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-index .service-type-badge.wordpress{ background: #e0e7ff; color: #3730a3; }
.fwh-client-cart-index .service-type-badge.woocommerce{ background: #f3e8ff; color: #6b21a8; }
.fwh-client-cart-index .service-type-badge.vps{ background: #dbeafe; color: #1e3a8a; }
.fwh-client-cart-index .service-type-badge.reseller{ background: #d1fae5; color: #065f46; }
.fwh-client-cart-index .service-type-badge.dedicated-cpu{ background: #fee2e2; color: #991b1b; }
.fwh-client-cart-index .service-type-badge.email{ background: #dbeafe; color: #1e40af; }
.fwh-client-cart-index .service-type-badge.ssl{ background: #d1fae5; color: #065f46; }

.fwh-client-cart-index .cart-item-details{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-cart-index .cart-item-detail{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}

.fwh-client-cart-index .cart-item-detail i{
    color: #16a34a;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.fwh-client-cart-index .cart-item-detail strong{
    color: #475569;
}

.fwh-client-cart-index .cart-item-config{
    background: #f8fafc;
    border-left: 3px solid #16a34a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.fwh-client-cart-index .cart-item-config h6{
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.fwh-client-cart-index .config-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.fwh-client-cart-index .config-item i{
    color: #16a34a;
    width: 16px;
}

.fwh-client-cart-index .cart-item-price{
    font-size: 1.75rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.fwh-client-cart-index .price-period{
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Remove Button */
.fwh-client-cart-index .btn-remove{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.fwh-client-cart-index .btn-remove:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Summary Card */
.fwh-client-cart-index .summary-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-client-cart-index-fadeInRight 0.6s ease;
}

.fwh-client-cart-index .summary-card .card-header{
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-bottom: 2px solid #bbf7d0;
    padding: 1.25rem 1.5rem;
}

.fwh-client-cart-index .summary-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #166534;
}

.fwh-client-cart-index .summary-card .card-body{
    padding: 1.5rem;
}

.fwh-client-cart-index .summary-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #475569;
}

.fwh-client-cart-index .summary-row strong{
    font-weight: 600;
    color: #1e293b;
}

.fwh-client-cart-index .summary-total{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.fwh-client-cart-index .summary-total h5{
    margin: 0;
    font-weight: 700;
    color: #1e293b;
}

.fwh-client-cart-index .summary-total .total-amount{
    color: #16a34a;
    font-size: 2rem;
    font-weight: 700;
}

/* Enhanced Buttons */
.fwh-client-cart-index .btn-enhanced{
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fwh-client-cart-index .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-cart-index .btn-enhanced i{
    font-size: 1.1rem;
}

.fwh-client-cart-index .btn-primary.btn-enhanced{
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
}

.fwh-client-cart-index .btn-primary.btn-enhanced:hover{
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
}

/* Security Badge */
.fwh-client-cart-index .security-badge{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.fwh-client-cart-index .security-badge i{
    font-size: 1.25rem;
    color: #16a34a;
}

/* Animations */
@keyframes fwh-client-cart-index-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-cart-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-cart-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-cart-index-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-cart-index .cart-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-cart-index .summary-card{
        position: static;
    }
    
    .fwh-client-cart-index .cart-item{
        padding: 1rem;
    }
    
    .fwh-client-cart-index .cart-item-details{
        grid-template-columns: 1fr;
    }
    
    .fwh-client-cart-index .cart-item-price{
        font-size: 1.5rem;
    }
    
    .fwh-client-cart-index .summary-total .total-amount{
        font-size: 1.5rem;
    }
}


/* ---- client/checkout/review ---- */

.fwh-client-checkout-review .checkout-card{border:none;border-radius:16px;box-shadow:0 2px 12px rgba(0,0,0,.08);margin-bottom:1.5rem;overflow:hidden}
.fwh-client-checkout-review .checkout-card .card-header{padding:1.1rem 1.4rem;border:none}
.fwh-client-checkout-review .checkout-card .card-header h5, .fwh-client-checkout-review .checkout-card .card-header h6{margin:0;font-weight:700}
.fwh-client-checkout-review .order-item{padding:1.25rem 1.4rem;border-bottom:1px solid #eef2f7}
.fwh-client-checkout-review .order-item:last-child{border-bottom:none}
.fwh-client-checkout-review .service-type-badge{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .75rem;border-radius:999px;font-size:.72rem;font-weight:700;text-transform:uppercase}
.fwh-client-checkout-review .service-type-badge.shared{background:#dbeafe;color:#1e40af}.fwh-client-checkout-review .service-type-badge.wordpress{background:#e0e7ff;color:#3730a3}.fwh-client-checkout-review .service-type-badge.woocommerce{background:#f3e8ff;color:#6b21a8}.fwh-client-checkout-review .service-type-badge.vps{background:#dbeafe;color:#1e3a8a}.fwh-client-checkout-review .service-type-badge.reseller{background:#d1fae5;color:#065f46}.fwh-client-checkout-review .service-type-badge.dedicated-cpu{background:#fee2e2;color:#991b1b}.fwh-client-checkout-review .service-type-badge.email{background:#dbeafe;color:#1e40af}.fwh-client-checkout-review .service-type-badge.ssl{background:#d1fae5;color:#065f46}
.fwh-client-checkout-review .item-details{display:flex;flex-direction:column;gap:.45rem;margin-top:.75rem}.fwh-client-checkout-review .item-detail{display:flex;align-items:center;gap:.5rem;font-size:.92rem;color:#64748b}.fwh-client-checkout-review .item-detail i{color:#16a34a;width:18px}
.fwh-client-checkout-review .item-config{background:#f8fafc;border-left:3px solid #16a34a;border-radius:8px;padding:.75rem 1rem;margin-top:.75rem}.fwh-client-checkout-review .config-item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:#64748b;margin-bottom:.25rem}.fwh-client-checkout-review .config-item:last-child{margin-bottom:0}.fwh-client-checkout-review .config-item i{color:#16a34a;width:16px}
.fwh-client-checkout-review .total-row{background:linear-gradient(135deg,#f0fdf4 0%,#dcfce7 100%);padding:1rem;border-radius:10px}.fwh-client-checkout-review .total-amount{font-size:1.7rem;font-weight:800;color:#16a34a}
.fwh-client-checkout-review .payment-option{border:2px solid #e9ecef!important;border-radius:12px!important;transition:all .25s ease;cursor:pointer}.fwh-client-checkout-review .payment-option:hover{border-color:#16a34a!important;background:rgba(22,163,74,.02);transform:translateY(-1px);box-shadow:0 4px 12px rgba(22,163,74,.12)}
.fwh-client-checkout-review .btn-checkout{padding:1rem 2rem;font-weight:700;border-radius:12px;font-size:1.05rem;transition:all .25s ease}
.fwh-client-checkout-review .breadcrumb{background:linear-gradient(135deg,#f0fdf4 0%,#dcfce7 100%);padding:1rem 1.4rem;border-radius:12px;border:1px solid #bbf7d0}
.fwh-client-checkout-review .breadcrumb-item a{color:#16a34a;text-decoration:none;font-weight:600}
.fwh-client-checkout-review .breadcrumb-item.active{color:#166534;font-weight:700}


/* ---- client/domains/index ---- */

/* ===== MY DOMAINS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-domains-index .domains-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-domains-index-fadeInDown 0.6s ease;
}

.fwh-client-domains-index .domains-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-client-domains-index .domains-count{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Empty State */
.fwh-client-domains-index .empty-domains{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-domains-index-fadeIn 0.6s ease;
}

.fwh-client-domains-index .empty-domains i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-domains-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-domains-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-domains-index .empty-domains h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-domains-index .empty-domains p{
    color: #718096;
    font-size: 1.1rem;
}

/* Domain Card */
.fwh-client-domains-index .domain-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    animation: fwh-client-domains-index-fadeInUp 0.6s ease;
}

.fwh-client-domains-index .domain-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.fwh-client-domains-index .domain-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.fwh-client-domains-index .domain-card .card-header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.fwh-client-domains-index .domain-card .card-header h5{
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}

.fwh-client-domains-index .domain-card .card-body{
    padding: 1.5rem;
}

/* Domain Info Row */
.fwh-client-domains-index .domain-info{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-client-domains-index .domain-info:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-domains-index .domain-info i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.fwh-client-domains-index .domain-info-content{
    flex: 1;
}

.fwh-client-domains-index .domain-info-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-client-domains-index .domain-info-content span{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Status Badge */
.fwh-client-domains-index .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-domains-index .badge-status i{
    font-size: 0.75rem;
}

/* Expiry Warning */
.fwh-client-domains-index .expiry-warning{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-domains-index .expiry-warning i{
    color: #ff6b35;
    font-size: 1.25rem;
}

.fwh-client-domains-index .expiry-warning span{
    color: #856404;
    font-size: 0.875rem;
    font-weight: 600;
}

.fwh-client-domains-index .expiry-expired{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

.fwh-client-domains-index .expiry-expired i{
    color: #dc3545;
}

.fwh-client-domains-index .expiry-expired span{
    color: #721c24;
}

/* Enhanced Buttons */
.fwh-client-domains-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fwh-client-domains-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Action Buttons */
.fwh-client-domains-index .domain-actions{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Auto Renew Toggle */
.fwh-client-domains-index .auto-renew-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.fwh-client-domains-index .auto-renew-on{
    background: #d4edda;
    color: #155724;
}

.fwh-client-domains-index .auto-renew-off{
    background: #f8d7da;
    color: #721c24;
}

/* Animations */
@keyframes fwh-client-domains-index-fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fwh-client-domains-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-domains-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-domains-index .domains-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .fwh-client-domains-index .domains-header .btn{
        width: 100%;
    }
}


/* ---- client/domains/show ---- */

/* ===== DOMAIN DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-domains-show .domain-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-domains-show-fadeInDown 0.6s ease;
}

.fwh-client-domains-show .domain-header h2{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    word-break: break-all;
}

.fwh-client-domains-show .domain-header h2 i{
    color: #0d6efd;
}

/* Alert Boxes */
.fwh-client-domains-show .alert-expiry{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-domains-show-slideInDown 0.6s ease;
}

.fwh-client-domains-show .alert-expiry i{
    font-size: 2rem;
}

.fwh-client-domains-show .alert-expiry-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.fwh-client-domains-show .alert-expiry-content p{
    margin: 0;
}

.fwh-client-domains-show .alert-warning-custom{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left-color: #ffc107;
}

.fwh-client-domains-show .alert-warning-custom i{
    color: #ff6b35;
}

.fwh-client-domains-show .alert-danger-custom{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

.fwh-client-domains-show .alert-danger-custom i{
    color: #dc3545;
}

/* Enhanced Cards */
.fwh-client-domains-show .details-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-domains-show-fadeInUp 0.6s ease;
}

.fwh-client-domains-show .details-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-domains-show .details-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-domains-show .details-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-domains-show .details-card .card-body{
    padding: 1.5rem;
}

/* Info Table */
.fwh-client-domains-show .info-table{
    margin: 0;
}

.fwh-client-domains-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-domains-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-client-domains-show .info-table tr:hover{
    background: #f8f9fa;
}

.fwh-client-domains-show .info-table th{
    font-weight: 600;
    color: #495057;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
}

.fwh-client-domains-show .info-table td{
    color: #6c757d;
    padding: 1rem;
    border: none;
}

/* Status Badge */
.fwh-client-domains-show .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-domains-show .badge-status i{
    font-size: 0.75rem;
}

/* Auto Renew Badge */
.fwh-client-domains-show .auto-renew-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.fwh-client-domains-show .auto-renew-on{
    background: #d4edda;
    color: #155724;
}

.fwh-client-domains-show .auto-renew-off{
    background: #f8d7da;
    color: #721c24;
}

/* Nameserver List */
.fwh-client-domains-show .nameserver-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-domains-show .nameserver-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-domains-show .nameserver-item i{
    color: #0d6efd;
    font-size: 1.25rem;
}

.fwh-client-domains-show .nameserver-content strong{
    display: block;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.fwh-client-domains-show .nameserver-content span{
    color: #6c757d;
    font-size: 0.95rem;
    font-family: "Courier New", monospace;
}

/* Action Buttons */
.fwh-client-domains-show .action-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-client-domains-show-fadeInRight 0.6s ease;
}

.fwh-client-domains-show .action-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-domains-show .action-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-domains-show .action-card .card-body{
    padding: 1.5rem;
}

.fwh-client-domains-show .action-buttons{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fwh-client-domains-show .btn-action{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-domains-show .btn-action:not(:disabled):hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Enhanced Button */
.fwh-client-domains-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-domains-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Timeline Info */
.fwh-client-domains-show .domain-timeline{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.fwh-client-domains-show .timeline-item{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.fwh-client-domains-show .timeline-item i{
    color: #0d6efd;
    font-size: 1.25rem;
    width: 30px;
}

.fwh-client-domains-show .timeline-content strong{
    display: block;
    color: #495057;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-client-domains-show .timeline-content span{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fwh-client-domains-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-domains-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-domains-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-client-domains-show-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-domains-show .domain-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .fwh-client-domains-show .domain-header .btn{
        width: 100%;
    }
    
    .fwh-client-domains-show .action-card{
        position: static;
    }
}


/* ---- client/invoices/index ---- */

/* ===== MY INVOICES ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-invoices-index .invoices-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-invoices-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-invoices-index .invoices-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Filter Buttons */
.fwh-client-invoices-index .filter-buttons{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-client-invoices-index .btn-filter{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.fwh-client-invoices-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-invoices-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-client-invoices-index .empty-invoices{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-invoices-index-fadeIn 0.6s ease;
}

.fwh-client-invoices-index .empty-invoices i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-invoices-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-invoices-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-invoices-index .empty-invoices h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-invoices-index .empty-invoices p{
    color: #718096;
    font-size: 1.1rem;
}

/* Invoice Table Card */
.fwh-client-invoices-index .invoice-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-client-invoices-index-fadeInUp 0.6s ease;
}

.fwh-client-invoices-index .invoice-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-invoices-index .invoice-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-client-invoices-index .invoice-table{
    margin: 0;
}

.fwh-client-invoices-index .invoice-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-client-invoices-index .invoice-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-client-invoices-index .invoice-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-invoices-index .invoice-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.01);
}

.fwh-client-invoices-index .invoice-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-client-invoices-index .invoice-table tbody tr:last-child{
    border-bottom: none;
}

/* Invoice Number Link */
.fwh-client-invoices-index .invoice-number{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .invoice-number:hover{
    color: #0a58ca;
    transform: translateX(4px);
}

/* Status Badges */
.fwh-client-invoices-index .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .badge-status i{
    font-size: 0.75rem;
}

/* Payment Method Badge */
.fwh-client-invoices-index .payment-badge{
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

/* Overdue Warning */
.fwh-client-invoices-index .overdue-warning{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Action Buttons */
.fwh-client-invoices-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Summary Cards */
.fwh-client-invoices-index .summary-cards{
    margin-top: 2rem;
    animation: fwh-client-invoices-index-fadeInUp 0.6s ease 0.3s both;
}

.fwh-client-invoices-index .summary-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.fwh-client-invoices-index .summary-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.fwh-client-invoices-index .summary-card.unpaid::before{
    background: linear-gradient(90deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-client-invoices-index .summary-card.paid::before{
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.fwh-client-invoices-index .summary-card.total::before{
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-client-invoices-index .summary-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fwh-client-invoices-index .summary-card .card-body{
    padding: 1.75rem;
}

.fwh-client-invoices-index .summary-card h6{
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-invoices-index .summary-card h3{
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.fwh-client-invoices-index .summary-icon{
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.1;
}

/* Enhanced Button */
.fwh-client-invoices-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-invoices-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-client-invoices-index-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-invoices-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-invoices-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-invoices-index .invoices-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-invoices-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-client-invoices-index .btn-filter{
        flex: 1;
        text-align: center;
    }
    
    .fwh-client-invoices-index .invoice-table thead th, .fwh-client-invoices-index .invoice-table tbody td{
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .fwh-client-invoices-index .btn-action{
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}


/* ---- client/invoices/show ---- */

/* ===== INVOICE DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-invoices-show .invoice-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-client-invoices-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-invoices-show .invoice-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .invoice-header-info h2 i{
    color: #0d6efd;
}

.fwh-client-invoices-show .invoice-header-actions{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Alert Boxes */
.fwh-client-invoices-show .alert-overdue{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-invoices-show-slideInDown 0.6s ease;
}

.fwh-client-invoices-show .alert-overdue i{
    font-size: 2rem;
    color: #dc3545;
}

.fwh-client-invoices-show .alert-overdue-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #721c24;
}

.fwh-client-invoices-show .alert-overdue-content p{
    margin: 0;
    color: #721c24;
}

/* Enhanced Cards */
.fwh-client-invoices-show .invoice-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-invoices-show-fadeInUp 0.6s ease;
}

.fwh-client-invoices-show .invoice-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-invoices-show .invoice-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-client-invoices-show .invoice-card .card-header h5, .fwh-client-invoices-show .invoice-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .invoice-card .card-body{
    padding: 2rem;
}

/* Status Row */
.fwh-client-invoices-show .status-row{
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.fwh-client-invoices-show .status-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .status-item strong{
    color: #495057;
    font-weight: 600;
}

/* Status Badge */
.fwh-client-invoices-show .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Paid Alert */
.fwh-client-invoices-show .alert-paid{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-client-invoices-show .alert-paid i{
    font-size: 1.5rem;
    color: #28a745;
}

/* Invoice Table */
.fwh-client-invoices-show .invoice-table{
    margin: 0;
}

.fwh-client-invoices-show .invoice-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-client-invoices-show .invoice-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-client-invoices-show .invoice-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-client-invoices-show .invoice-table tbody td{
    padding: 1.25rem;
    vertical-align: middle;
}

.fwh-client-invoices-show .invoice-table tfoot{
    background: #f8f9fa;
}

.fwh-client-invoices-show .invoice-table tfoot td{
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.fwh-client-invoices-show .invoice-table .total-row{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
}

.fwh-client-invoices-show .invoice-table .total-row td{
    padding: 1.5rem 1.25rem;
}

/* Notes Section */
.fwh-client-invoices-show .notes-section{
    margin-top: 2rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0d6efd;
}

.fwh-client-invoices-show .notes-section strong{
    color: #495057;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Payment Card */
.fwh-client-invoices-show .payment-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    position: sticky;
    top: 80px;
    animation: fwh-client-invoices-show-fadeInRight 0.6s ease;
}

.fwh-client-invoices-show .payment-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-client-invoices-show .payment-card .card-body{
    padding: 1.5rem;
}

.fwh-client-invoices-show .payment-amount{
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

/* Payment Buttons */
.fwh-client-invoices-show .btn-payment{
    padding: 0.875rem 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-invoices-show .btn-payment:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-invoices-show .btn-payment i{
    font-size: 1.25rem;
}

/* Security Badge */
.fwh-client-invoices-show .security-note{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-client-invoices-show .security-note i{
    color: #28a745;
}

/* Info Card */
.fwh-client-invoices-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-invoices-show-fadeInRight 0.6s ease 0.2s both;
}

.fwh-client-invoices-show .info-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-invoices-show .info-card .card-body{
    padding: 1.5rem;
}

.fwh-client-invoices-show .info-item{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-client-invoices-show .info-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-invoices-show .info-item:last-child{
    margin-bottom: 0;
}

.fwh-client-invoices-show .info-item i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-client-invoices-show .info-item-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Enhanced Button */
.fwh-client-invoices-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-invoices-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Enhancements */
.fwh-client-invoices-show .modal-content{
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fwh-client-invoices-show .modal-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    border-radius: 16px 16px 0 0;
}

.fwh-client-invoices-show .modal-header .modal-title{
    font-weight: 700;
}

.fwh-client-invoices-show .interac-instructions{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 1.25rem;
}

.fwh-client-invoices-show .interac-instructions h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-invoices-show .interac-instructions ol{
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.fwh-client-invoices-show .interac-instructions ol li{
    margin-bottom: 0.75rem;
    color: #495057;
}

.fwh-client-invoices-show .interac-instructions ol li:last-child{
    margin-bottom: 0;
}

/* Print Styles */
@media print{
    .fwh-client-invoices-show .invoice-header-actions, .fwh-client-invoices-show .payment-card, .fwh-client-invoices-show .btn, .fwh-client-invoices-show .no-print{
        display: none !important;
    }
    
    .fwh-client-invoices-show .invoice-card{
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

/* Animations */
@keyframes fwh-client-invoices-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-invoices-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-invoices-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-client-invoices-show-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-invoices-show .invoice-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-invoices-show .invoice-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-client-invoices-show .invoice-header-actions .btn{
        width: 100%;
    }
    
    .fwh-client-invoices-show .payment-card{
        position: static;
    }
    
    .fwh-client-invoices-show .payment-amount{
        font-size: 2rem;
    }
}


/* ---- client/order/dedicated-cpu-hosting ---- */

.fwh-client-order-dedicated-cpu-hosting{
    --dedicated-red: #dc2626;
    --dedicated-red-dark: #991b1b;
    --dedicated-orange: #ea580c;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-header{
    background: linear-gradient(135deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-header::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: fwh-client-order-dedicated-cpu-hosting-pulse 8s ease-in-out infinite;
}

@keyframes fwh-client-order-dedicated-cpu-hosting-pulse{
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.fwh-client-order-dedicated-cpu-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-dedicated-cpu-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-dedicated-cpu-hosting .package-card:hover{
    border-color: var(--dedicated-red);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-dedicated-cpu-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-dedicated-cpu-hosting .package-card.selected{
    border-color: var(--dedicated-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.fwh-client-order-dedicated-cpu-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-dedicated-cpu-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--dedicated-orange) 0%, #c2410c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    z-index: 1;
}

.fwh-client-order-dedicated-cpu-hosting .btn-dedicated{
    background: linear-gradient(135deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-dedicated-cpu-hosting .btn-dedicated:hover{
    background: linear-gradient(135deg, var(--dedicated-red-dark) 0%, var(--dedicated-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    color: white;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-features{
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid var(--dedicated-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-dedicated-cpu-hosting .dedicated-features h4{
    color: var(--dedicated-red-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .feature-icon{
    color: var(--dedicated-red);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .performance-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dedicated-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .specs-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.fwh-client-order-dedicated-cpu-hosting .spec-item{
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--dedicated-red);
}

.fwh-client-order-dedicated-cpu-hosting .spec-label{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.fwh-client-order-dedicated-cpu-hosting .spec-value{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dedicated-red);
}

.fwh-client-order-dedicated-cpu-hosting .guarantee-box{
    background: white;
    border: 2px solid var(--dedicated-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.fwh-client-order-dedicated-cpu-hosting .guarantee-box i{
    font-size: 3rem;
    color: var(--dedicated-red);
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .guarantee-box h5{
    color: var(--dedicated-red-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-feature i{
    color: var(--dedicated-red);
}

.fwh-client-order-dedicated-cpu-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--dedicated-red);
    margin-bottom: 0.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-dedicated-cpu-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-dedicated-cpu-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-dedicated-cpu-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-dedicated-cpu-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--dedicated-red) 0%, var(--dedicated-red-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-dedicated-cpu-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-dedicated-cpu-hosting .form-control, .fwh-client-order-dedicated-cpu-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-dedicated-cpu-hosting .form-control:focus, .fwh-client-order-dedicated-cpu-hosting .form-select:focus{
    border-color: var(--dedicated-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.fwh-client-order-dedicated-cpu-hosting .price-display{
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-left: 4px solid var(--dedicated-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-dedicated-cpu-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-dedicated-cpu-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-dedicated-cpu-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-dedicated-cpu-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-dedicated-cpu-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-dedicated-cpu-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/domain ---- */

/* ===== DOMAIN REGISTRATION ENHANCED STYLES ===== */

/* Hero Section */
.fwh-client-order-domain .domain-hero{
    text-align: center;
    margin-bottom: 3rem;
    animation: fwh-client-order-domain-fadeInDown 0.6s ease;
}

.fwh-client-order-domain .domain-hero h1{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fwh-client-order-domain .domain-hero h1 i{
    color: #16a34a;
    font-size: 2.5rem;
}

.fwh-client-order-domain .domain-hero .lead{
    color: #6c757d;
    font-size: 1.25rem;
}

/* Search Card */
.fwh-client-order-domain .search-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: fwh-client-order-domain-fadeInUp 0.6s ease;
}

.fwh-client-order-domain .search-card .card-body{
    padding: 2.5rem;
}

/* Search Input */
.fwh-client-order-domain .domain-search{
    position: relative;
}

.fwh-client-order-domain .domain-search .input-group{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.fwh-client-order-domain .domain-search .form-control{
    border: 2px solid #e9ecef;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border-right: none;
}

.fwh-client-order-domain .domain-search .form-control:focus{
    border-color: #16a34a;
    box-shadow: none;
}

.fwh-client-order-domain .domain-search .btn-search{
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.fwh-client-order-domain .domain-search .btn-search:hover{
    transform: scale(1.05);
}

/* Search Results */
.fwh-client-order-domain #searchResults{
    margin-top: 2rem;
    animation: fwh-client-order-domain-fadeIn 0.5s ease;
}

.fwh-client-order-domain .result-available{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
}

.fwh-client-order-domain .result-available h5{
    color: #155724;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-domain .result-available h5 i{
    font-size: 1.5rem;
}

.fwh-client-order-domain .result-unavailable{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    border-radius: 12px;
    padding: 1.5rem;
}

.fwh-client-order-domain .result-unavailable i{
    font-size: 1.5rem;
    color: #dc3545;
}

/* Register Form Card */
.fwh-client-order-domain .register-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-client-order-domain-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-order-domain .register-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-domain .register-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-domain .register-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-client-order-domain .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-domain .form-label i{
    color: #16a34a;
}

.fwh-client-order-domain .form-control, .fwh-client-order-domain .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-order-domain .form-control:focus, .fwh-client-order-domain .form-select:focus{
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

/* TLD Pricing Cards */
.fwh-client-order-domain .tld-cards{
    animation: fwh-client-order-domain-fadeInUp 0.6s ease 0.4s both;
}

.fwh-client-order-domain .tld-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.fwh-client-order-domain .tld-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-domain .tld-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.fwh-client-order-domain .tld-card:hover::before{
    transform: scaleX(1);
}

.fwh-client-order-domain .tld-card .card-body{
    padding: 2rem;
    text-align: center;
}

.fwh-client-order-domain .tld-extension{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fwh-client-order-domain .tld-extension i{
    color: #16a34a;
}

.fwh-client-order-domain .tld-price{
    font-size: 2.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.fwh-client-order-domain .tld-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-domain .tld-features{
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.fwh-client-order-domain .tld-features li{
    padding: 0.5rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-domain .tld-features li i{
    color: #28a745;
}

/* Popular Badge */
.fwh-client-order-domain .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Enhanced Buttons */
.fwh-client-order-domain .btn-enhanced{
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-order-domain .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-order-domain .btn-enhanced i{
    font-size: 1.1rem;
}

/* Loading Spinner */
.fwh-client-order-domain .loading-spinner{
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Alert Enhancements */
.fwh-client-order-domain .alert{
    border-radius: 12px;
    border: none;
}

.fwh-client-order-domain .alert-info{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #0dcaf0;
}

.fwh-client-order-domain .alert-warning{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
}

.fwh-client-order-domain .alert-danger{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

/* Features Section */
.fwh-client-order-domain .features-section{
    margin-top: 3rem;
    animation: fwh-client-order-domain-fadeInUp 0.6s ease 0.6s both;
}

.fwh-client-order-domain .feature-card{
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-order-domain .feature-card:hover{
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.fwh-client-order-domain .feature-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.3);
}

.fwh-client-order-domain .feature-card h5{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.fwh-client-order-domain .feature-card p{
    color: #6c757d;
    margin: 0;
}

/* Animations */
@keyframes fwh-client-order-domain-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-order-domain-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-domain-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-order-domain .domain-hero h1{
        font-size: 1.75rem;
        flex-direction: column;
    }
    
    .fwh-client-order-domain .domain-hero h1 i{
        font-size: 2rem;
    }
    
    .fwh-client-order-domain .search-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-client-order-domain .domain-search .btn-search{
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .fwh-client-order-domain .tld-price{
        font-size: 2rem;
    }
}


/* ---- client/order/email-hosting ---- */

.fwh-client-order-email-hosting{
    --email-blue: #3b82f6;
    --email-blue-dark: #1e40af;
    --email-indigo: #6366f1;
}

.fwh-client-order-email-hosting .email-header{
    background: linear-gradient(135deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-email-hosting .email-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-email-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-email-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-email-hosting .package-card:hover{
    border-color: var(--email-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-email-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-email-hosting .package-card.selected{
    border-color: var(--email-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.fwh-client-order-email-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-email-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--email-indigo) 0%, #4f46e5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

.fwh-client-order-email-hosting .btn-email{
    background: linear-gradient(135deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-email-hosting .btn-email:hover{
    background: linear-gradient(135deg, var(--email-blue-dark) 0%, var(--email-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

.fwh-client-order-email-hosting .email-features{
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid var(--email-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-email-hosting .email-features h4{
    color: var(--email-blue-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-email-hosting .feature-icon{
    color: var(--email-blue);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-email-hosting .email-clients{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.fwh-client-order-email-hosting .client-item{
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fwh-client-order-email-hosting .client-item:hover{
    border-color: var(--email-blue);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.fwh-client-order-email-hosting .client-item i{
    font-size: 2rem;
    color: var(--email-blue);
    margin-bottom: 0.5rem;
}

.fwh-client-order-email-hosting .client-item span{
    display: block;
    font-weight: 600;
    color: #374151;
}

.fwh-client-order-email-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-email-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-email-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-email-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-email-hosting .package-feature i{
    color: var(--email-blue);
}

.fwh-client-order-email-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--email-blue);
    margin-bottom: 0.5rem;
}

.fwh-client-order-email-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-email-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-email-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-email-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-email-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-email-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--email-blue) 0%, var(--email-blue-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-email-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-email-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-email-hosting .form-control, .fwh-client-order-email-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-email-hosting .form-control:focus, .fwh-client-order-email-hosting .form-select:focus{
    border-color: var(--email-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.fwh-client-order-email-hosting .price-display{
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid var(--email-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-email-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-email-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-email-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-email-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-email-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-email-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-email-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/hosting ---- */

/* ===== ORDER HOSTING ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-order-hosting .hosting-header{
    margin-bottom: 2rem;
    animation: fwh-client-order-hosting-fadeInDown 0.6s ease;
}

.fwh-client-order-hosting .hosting-header h2{
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .hosting-header h2 i{
    color: #0d6efd;
}

/* Package Selection Card */
.fwh-client-order-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-client-order-hosting-fadeInUp 0.6s ease;
}

.fwh-client-order-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .packages-card .card-body{
    padding: 2rem;
}

/* Package Cards */
.fwh-client-order-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.fwh-client-order-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-hosting .package-card:hover{
    border-color: #0d6efd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.fwh-client-order-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-hosting .package-card.selected{
    border-color: #0d6efd;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15);
}

.fwh-client-order-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-hosting .package-card .card-body{
    padding: 1.75rem;
}

.fwh-client-order-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-hosting .package-name i{
    color: #0d6efd;
}

.fwh-client-order-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-hosting .package-features{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.fwh-client-order-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.95rem;
}

.fwh-client-order-hosting .package-feature i{
    color: #0d6efd;
    font-size: 1.1rem;
}

.fwh-client-order-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.fwh-client-order-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Popular Badge */
.fwh-client-order-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

/* Configuration Card */
.fwh-client-order-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-order-hosting-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-order-hosting .config-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .config-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-client-order-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-order-hosting .form-label i{
    color: #0d6efd;
}

.fwh-client-order-hosting .form-control, .fwh-client-order-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-order-hosting .form-control:focus, .fwh-client-order-hosting .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Price Display */
.fwh-client-order-hosting .price-display{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-hosting .price-display strong{
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Sidebar Cards */
.fwh-client-order-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-client-order-hosting-fadeInRight 0.6s ease;
}

.fwh-client-order-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-hosting .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Features List */
.fwh-client-order-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-order-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-hosting .features-list li:hover{
    background: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 8px;
}

.fwh-client-order-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
    width: 24px;
}

/* Enhanced Buttons */
.fwh-client-order-hosting .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-order-hosting .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-order-hosting .btn-enhanced i{
    font-size: 1.1rem;
}

/* Info Alert */
.fwh-client-order-hosting .info-alert{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #0dcaf0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-order-hosting-fadeIn 0.6s ease;
}

.fwh-client-order-hosting .info-alert i{
    font-size: 2rem;
    color: #0dcaf0;
}

/* Savings Badge */
.fwh-client-order-hosting .savings-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.fwh-client-order-hosting .savings-badge i{
    font-size: 0.75rem;
}

/* Animations */
@keyframes fwh-client-order-hosting-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-order-hosting-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-hosting-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-hosting-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-order-hosting .package-card .row{
        flex-direction: column;
    }
    
    .fwh-client-order-hosting .package-card .text-end{
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .fwh-client-order-hosting .package-features{
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .fwh-client-order-hosting .btn-enhanced{
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


/* ---- client/order/index ---- */

/* ===== ORDER SERVICES ENHANCED STYLES ===== */

/* Hero Section */
.fwh-client-order-index .services-hero{
    text-align: center;
    margin-bottom: 3rem;
    animation: fwh-client-order-index-fadeInDown 0.6s ease;
}

.fwh-client-order-index .services-hero h1{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fwh-client-order-index .services-hero h1 i{
    color: #16a34a;
    font-size: 2.5rem;
}

.fwh-client-order-index .services-hero .lead{
    color: #6c757d;
    font-size: 1.25rem;
}

/* Service Categories */
.fwh-client-order-index .service-categories{
    margin-bottom: 4rem;
}

.fwh-client-order-index .category-card{
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    animation: fwh-client-order-index-fadeInUp 0.6s ease;
    background: white;
}

.fwh-client-order-index .category-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-color) 0%, var(--card-color-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.fwh-client-order-index .category-card:hover::before{
    transform: scaleX(1);
}

.fwh-client-order-index .category-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.fwh-client-order-index .category-card .card-body{
    padding: 2.5rem 2rem;
}

.fwh-client-order-index .service-icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.fwh-client-order-index .category-card:hover .service-icon{
    transform: scale(1.1) rotate(5deg);
}

/* Service Type Colors */
.fwh-client-order-index .category-card.shared{ --card-color: #0d6efd; --card-color-dark: #0a58ca; }
.fwh-client-order-index .category-card.wordpress{ --card-color: #0073aa; --card-color-dark: #005177; }
.fwh-client-order-index .category-card.woocommerce{ --card-color: #7f54b3; --card-color-dark: #5e3a87; }
.fwh-client-order-index .category-card.vps{ --card-color: #0066cc; --card-color-dark: #004d99; }
.fwh-client-order-index .category-card.reseller{ --card-color: #10b981; --card-color-dark: #059669; }
.fwh-client-order-index .category-card.dedicated{ --card-color: #dc2626; --card-color-dark: #991b1b; }
.fwh-client-order-index .category-card.email{ --card-color: #3b82f6; --card-color-dark: #1e40af; }
.fwh-client-order-index .category-card.ssl{ --card-color: #059669; --card-color-dark: #047857; }
.fwh-client-order-index .category-card.domain{ --card-color: #198754; --card-color-dark: #146c43; }

.fwh-client-order-index .service-icon.shared{
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.2) 100%);
    color: #0d6efd;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.2);
}

.fwh-client-order-index .service-icon.wordpress{
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.1) 0%, rgba(0, 115, 170, 0.2) 100%);
    color: #0073aa;
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.2);
}

.fwh-client-order-index .service-icon.woocommerce{
    background: linear-gradient(135deg, rgba(127, 84, 179, 0.1) 0%, rgba(127, 84, 179, 0.2) 100%);
    color: #7f54b3;
    box-shadow: 0 8px 24px rgba(127, 84, 179, 0.2);
}

.fwh-client-order-index .service-icon.vps{
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.2) 100%);
    color: #0066cc;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.fwh-client-order-index .service-icon.reseller{
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.fwh-client-order-index .service-icon.dedicated{
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.fwh-client-order-index .service-icon.email{
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.fwh-client-order-index .service-icon.ssl{
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.2) 100%);
    color: #059669;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.fwh-client-order-index .service-icon.domain{
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.2) 100%);
    color: #198754;
    box-shadow: 0 8px 24px rgba(25, 135, 84, 0.2);
}

.fwh-client-order-index .category-card h3{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.fwh-client-order-index .category-card p{
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    min-height: 48px;
}

.fwh-client-order-index .price-from{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-index .price-from strong{
    font-size: 1.5rem;
    color: var(--card-color);
    font-weight: 700;
}

/* Enhanced Buttons */
.fwh-client-order-index .btn-service{
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.fwh-client-order-index .btn-service:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.fwh-client-order-index .btn-service i{
    font-size: 1.1rem;
}

/* Popular Badge */
.fwh-client-order-index .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 10;
    animation: fwh-client-order-index-pulse 2s infinite;
}

@keyframes fwh-client-order-index-pulse{
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Why Choose Section */
.fwh-client-order-index .why-choose-section{
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    animation: fwh-client-order-index-fadeInUp 0.6s ease 0.5s both;
}

.fwh-client-order-index .section-header{
    text-align: center;
    margin-bottom: 3rem;
}

.fwh-client-order-index .section-header h3{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-order-index .section-header h3 i{
    color: #16a34a;
}

.fwh-client-order-index .section-header p{
    color: #6c757d;
    font-size: 1.1rem;
}

.fwh-client-order-index .feature-box{
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    background: white;
    border-radius: 16px;
    height: 100%;
}

.fwh-client-order-index .feature-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fwh-client-order-index .feature-box-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(22, 163, 74, 0.2);
    transition: all 0.3s ease;
}

.fwh-client-order-index .feature-box:hover .feature-box-icon{
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.3);
}

.fwh-client-order-index .feature-box h5{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.fwh-client-order-index .feature-box p{
    color: #6c757d;
    margin: 0;
}

/* Animations */
@keyframes fwh-client-order-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-order-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-order-index .services-hero h1{
        font-size: 2rem;
        flex-direction: column;
    }
    
    .fwh-client-order-index .services-hero h1 i{
        font-size: 2rem;
    }
    
    .fwh-client-order-index .category-card .card-body{
        padding: 2rem 1.5rem;
    }
    
    .fwh-client-order-index .service-icon{
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .fwh-client-order-index .category-card h3{
        font-size: 1.25rem;
    }
}


/* ---- client/order/reseller-hosting ---- */

.fwh-client-order-reseller-hosting{
    --reseller-green: #10b981;
    --reseller-green-dark: #059669;
    --reseller-teal: #14b8a6;
}

.fwh-client-order-reseller-hosting .reseller-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-reseller-hosting .reseller-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-reseller-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-reseller-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-reseller-hosting .package-card:hover{
    border-color: var(--reseller-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-reseller-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-reseller-hosting .package-card.selected{
    border-color: var(--reseller-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.fwh-client-order-reseller-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-reseller-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--reseller-teal) 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    z-index: 1;
}

.fwh-client-order-reseller-hosting .btn-reseller{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-reseller-hosting .btn-reseller:hover{
    background: linear-gradient(135deg, var(--reseller-green-dark) 0%, var(--reseller-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.fwh-client-order-reseller-hosting .reseller-features{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-reseller-hosting .reseller-features h4{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .feature-icon{
    color: var(--reseller-green);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-reseller-hosting .business-benefits{
    background: white;
    border: 2px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-reseller-hosting .business-benefits h5{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .benefit-item{
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
}

.fwh-client-order-reseller-hosting .benefit-icon{
    width: 40px;
    height: 40px;
    background: var(--reseller-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fwh-client-order-reseller-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-reseller-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-reseller-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-reseller-hosting .package-feature i{
    color: var(--reseller-green);
}

.fwh-client-order-reseller-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--reseller-green);
    margin-bottom: 0.5rem;
}

.fwh-client-order-reseller-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-reseller-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-reseller-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-reseller-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-reseller-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-reseller-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-reseller-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-reseller-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-reseller-hosting .form-control, .fwh-client-order-reseller-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-reseller-hosting .form-control:focus, .fwh-client-order-reseller-hosting .form-select:focus{
    border-color: var(--reseller-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.fwh-client-order-reseller-hosting .price-display{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-reseller-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-reseller-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-reseller-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-reseller-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-reseller-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-reseller-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-reseller-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/ssl-certificates ---- */

.fwh-client-order-ssl-certificates{
    --reseller-green: #10b981;
    --reseller-green-dark: #059669;
    --reseller-teal: #14b8a6;
}

.fwh-client-order-ssl-certificates .reseller-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-ssl-certificates .reseller-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-ssl-certificates .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-ssl-certificates .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-ssl-certificates .package-card:hover{
    border-color: var(--reseller-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-ssl-certificates .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-ssl-certificates .package-card.selected{
    border-color: var(--reseller-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.fwh-client-order-ssl-certificates .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-ssl-certificates .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--reseller-teal) 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    z-index: 1;
}

.fwh-client-order-ssl-certificates .btn-reseller{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-ssl-certificates .btn-reseller:hover{
    background: linear-gradient(135deg, var(--reseller-green-dark) 0%, var(--reseller-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.fwh-client-order-ssl-certificates .reseller-features{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-ssl-certificates .reseller-features h4{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .feature-icon{
    color: var(--reseller-green);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-ssl-certificates .business-benefits{
    background: white;
    border: 2px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-ssl-certificates .business-benefits h5{
    color: var(--reseller-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .benefit-item{
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
}

.fwh-client-order-ssl-certificates .benefit-icon{
    width: 40px;
    height: 40px;
    background: var(--reseller-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fwh-client-order-ssl-certificates .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-ssl-certificates .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-ssl-certificates .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-ssl-certificates .package-feature i{
    color: var(--reseller-green);
}

.fwh-client-order-ssl-certificates .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--reseller-green);
    margin-bottom: 0.5rem;
}

.fwh-client-order-ssl-certificates .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-ssl-certificates .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-ssl-certificates .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-ssl-certificates .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-ssl-certificates .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-ssl-certificates .config-card .card-header{
    background: linear-gradient(135deg, var(--reseller-green) 0%, var(--reseller-green-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-ssl-certificates .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-ssl-certificates .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-ssl-certificates .form-control, .fwh-client-order-ssl-certificates .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-ssl-certificates .form-control:focus, .fwh-client-order-ssl-certificates .form-select:focus{
    border-color: var(--reseller-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.fwh-client-order-ssl-certificates .price-display{
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-left: 4px solid var(--reseller-green);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-ssl-certificates .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-ssl-certificates .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-ssl-certificates .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-ssl-certificates .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-ssl-certificates .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-ssl-certificates .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-ssl-certificates .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/vps-hosting ---- */

.fwh-client-order-vps-hosting{
    --vps-blue: #0066cc;
    --vps-blue-dark: #004d99;
    --vps-cyan: #00bcd4;
}

.fwh-client-order-vps-hosting .vps-header{
    background: linear-gradient(135deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-vps-hosting .vps-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-vps-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-vps-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-vps-hosting .package-card:hover{
    border-color: var(--vps-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-vps-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-vps-hosting .package-card.selected{
    border-color: var(--vps-blue);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.fwh-client-order-vps-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-vps-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--vps-cyan) 0%, #0097a7 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
    z-index: 1;
}

.fwh-client-order-vps-hosting .btn-vps{
    background: linear-gradient(135deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-vps-hosting .btn-vps:hover{
    background: linear-gradient(135deg, var(--vps-blue-dark) 0%, var(--vps-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    color: white;
}

.fwh-client-order-vps-hosting .vps-features{
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--vps-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-vps-hosting .vps-features h4{
    color: var(--vps-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-vps-hosting .feature-icon{
    color: var(--vps-blue);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-vps-hosting .specs-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.fwh-client-order-vps-hosting .spec-item{
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--vps-blue);
}

.fwh-client-order-vps-hosting .spec-label{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.fwh-client-order-vps-hosting .spec-value{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vps-blue);
}

.fwh-client-order-vps-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-vps-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-vps-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-vps-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-vps-hosting .package-feature i{
    color: var(--vps-blue);
}

.fwh-client-order-vps-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--vps-blue);
    margin-bottom: 0.5rem;
}

.fwh-client-order-vps-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-vps-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-vps-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-vps-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-vps-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-vps-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--vps-blue) 0%, var(--vps-blue-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-vps-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-vps-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-vps-hosting .form-control, .fwh-client-order-vps-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-vps-hosting .form-control:focus, .fwh-client-order-vps-hosting .form-select:focus{
    border-color: var(--vps-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.fwh-client-order-vps-hosting .price-display{
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--vps-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-vps-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-vps-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-vps-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-vps-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-vps-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-vps-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-vps-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/woocommerce-hosting ---- */

.fwh-client-order-woocommerce-hosting{
    --woo-purple: #7f54b3;
    --woo-purple-dark: #5e3a87;
    --woo-pink: #c7509f;
}

.fwh-client-order-woocommerce-hosting .woocommerce-header{
    background: linear-gradient(135deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-woocommerce-hosting .woocommerce-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-woocommerce-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-woocommerce-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-woocommerce-hosting .package-card:hover{
    border-color: var(--woo-purple);
    box-shadow: 0 8px 24px rgba(127, 84, 179, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-woocommerce-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-woocommerce-hosting .package-card.selected{
    border-color: var(--woo-purple);
    background: linear-gradient(135deg, rgba(127, 84, 179, 0.05) 0%, rgba(127, 84, 179, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(127, 84, 179, 0.2);
}

.fwh-client-order-woocommerce-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-woocommerce-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--woo-pink) 0%, #a8428a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(199, 80, 159, 0.3);
    z-index: 1;
}

.fwh-client-order-woocommerce-hosting .btn-woocommerce{
    background: linear-gradient(135deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-woocommerce-hosting .btn-woocommerce:hover{
    background: linear-gradient(135deg, var(--woo-purple-dark) 0%, var(--woo-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 84, 179, 0.3);
    color: white;
}

.fwh-client-order-woocommerce-hosting .woocommerce-features{
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    border-left: 4px solid var(--woo-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-woocommerce-hosting .woocommerce-features h4{
    color: var(--woo-purple);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-woocommerce-hosting .feature-icon{
    color: var(--woo-purple);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.fwh-client-order-woocommerce-hosting .package-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fwh-client-order-woocommerce-hosting .package-description{
    color: #6c757d;
    margin-bottom: 1rem;
}

.fwh-client-order-woocommerce-hosting .package-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fwh-client-order-woocommerce-hosting .package-feature{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.fwh-client-order-woocommerce-hosting .package-feature i{
    color: var(--woo-purple);
}

.fwh-client-order-woocommerce-hosting .package-price{
    font-size: 2rem;
    font-weight: 700;
    color: var(--woo-purple);
    margin-bottom: 0.5rem;
}

.fwh-client-order-woocommerce-hosting .package-period{
    color: #6c757d;
    font-size: 0.95rem;
}

.fwh-client-order-woocommerce-hosting .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fwh-client-order-woocommerce-hosting .packages-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-woocommerce-hosting .packages-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-order-woocommerce-hosting .config-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-client-order-woocommerce-hosting .config-card .card-header{
    background: linear-gradient(135deg, var(--woo-purple) 0%, var(--woo-purple-dark) 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-order-woocommerce-hosting .config-card .card-header h5{
    margin: 0;
    font-weight: 700;
}

.fwh-client-order-woocommerce-hosting .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.fwh-client-order-woocommerce-hosting .form-control, .fwh-client-order-woocommerce-hosting .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-client-order-woocommerce-hosting .form-control:focus, .fwh-client-order-woocommerce-hosting .form-select:focus{
    border-color: var(--woo-purple);
    box-shadow: 0 0 0 4px rgba(127, 84, 179, 0.1);
}

.fwh-client-order-woocommerce-hosting .price-display{
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    border-left: 4px solid var(--woo-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-client-order-woocommerce-hosting .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.fwh-client-order-woocommerce-hosting .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-order-woocommerce-hosting .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-order-woocommerce-hosting .features-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-order-woocommerce-hosting .features-list li{
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-order-woocommerce-hosting .features-list li:last-child{
    border-bottom: none;
}

.fwh-client-order-woocommerce-hosting .features-list li i{
    font-size: 1.25rem;
    color: #28a745;
}


/* ---- client/order/wordpress-hosting ---- */

.fwh-client-order-wordpress-hosting{
    --wp-blue: #0073aa;
    --wp-blue-dark: #005177;
    --wp-orange: #d54e21;
}

.fwh-client-order-wordpress-hosting .wordpress-header{
    background: linear-gradient(135deg, var(--wp-blue) 0%, var(--wp-blue-dark) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.fwh-client-order-wordpress-hosting .wordpress-header h1{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fwh-client-order-wordpress-hosting .wordpress-header p{
    font-size: 1.2rem;
    opacity: 0.9;
}

.fwh-client-order-wordpress-hosting .package-card{
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fwh-client-order-wordpress-hosting .package-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--wp-blue) 0%, var(--wp-blue-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.fwh-client-order-wordpress-hosting .package-card:hover{
    border-color: var(--wp-blue);
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.15);
    transform: translateY(-4px);
}

.fwh-client-order-wordpress-hosting .package-card:hover::before{
    transform: scaleY(1);
}

.fwh-client-order-wordpress-hosting .package-card.selected{
    border-color: var(--wp-blue);
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.05) 0%, rgba(0, 115, 170, 0.02) 100%);
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.2);
}

.fwh-client-order-wordpress-hosting .package-card.selected::before{
    transform: scaleY(1);
}

.fwh-client-order-wordpress-hosting .popular-badge{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--wp-orange) 0%, #c7401b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(213, 78, 33, 0.3);
    z-index: 1;
}

.fwh-client-order-wordpress-hosting .btn-wordpress{
    background: linear-gradient(135deg, var(--wp-blue) 0%, var(--wp-blue-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-client-order-wordpress-hosting .btn-wordpress:hover{
    background: linear-gradient(135deg, var(--wp-blue-dark) 0%, var(--wp-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 115, 170, 0.3);
    color: white;
}

.fwh-client-order-wordpress-hosting .wordpress-features{
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-left: 4px solid var(--wp-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.fwh-client-order-wordpress-hosting .wordpress-features h4{
    color: var(--wp-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.fwh-client-order-wordpress-hosting .feature-icon{
    color: var(--wp-blue);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}


/* ---- client/services/index ---- */

/* ===== MY SERVICES ENHANCED STYLES ===== */
.fwh-client-services-index .services-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-services-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}
.fwh-client-services-index .services-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.fwh-client-services-index .services-header h2 i{ color: #0d6efd; }
.fwh-client-services-index .services-count{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}
.fwh-client-services-index .empty-services{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-services-index-fadeIn 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fwh-client-services-index .empty-services > i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-services-index-float 3s ease-in-out infinite;
}
.fwh-client-services-index .empty-services .btn{
    display: inline-flex !important;
    width: auto !important;
    min-width: 180px;
    max-width: 280px;
    align-items: center;
    justify-content: center;
}
@keyframes fwh-client-services-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.fwh-client-services-index .empty-services h4{ color: #2d3748; margin-bottom: 1rem; }
.fwh-client-services-index .empty-services p{ color: #718096; font-size: 1.1rem; }
.fwh-client-services-index .service-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    animation: fwh-client-services-index-fadeInUp 0.6s ease;
}
.fwh-client-services-index .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.fwh-client-services-index .service-card .card-header{
    padding: 1.5rem;
    border: none;
    position: relative;
    overflow: hidden;
}
.fwh-client-services-index .service-card .card-header::before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
}
.fwh-client-services-index .service-card .card-header h5{
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}
.fwh-client-services-index .service-card .card-header h5 i{ font-size: 1.25rem; }
.fwh-client-services-index .service-card .card-body{ padding: 1.75rem; }
.fwh-client-services-index .service-info{
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.fwh-client-services-index .service-info:hover{ background: #e9ecef; transform: translateX(4px); }
.fwh-client-services-index .service-info i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}
.fwh-client-services-index .service-info-content{ flex: 1; }
.fwh-client-services-index .service-info-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.fwh-client-services-index .service-info-content span{ color: #6c757d; font-size: 0.95rem; }
.fwh-client-services-index .badge-status{
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.fwh-client-services-index .price-display{ font-size: 1.5rem; font-weight: 700; color: #0d6efd; }
.fwh-client-services-index .due-soon{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.fwh-client-services-index .due-soon i{ color: #ff6b35; font-size: 1.25rem; }
.fwh-client-services-index .due-soon span{ color: #856404; font-size: 0.875rem; font-weight: 600; }
.fwh-client-services-index .service-actions{ display: flex; flex-direction: column; gap: 0.5rem; }
.fwh-client-services-index .btn-action{
    padding: 0.6rem 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.fwh-client-services-index .btn-action:hover{ transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.fwh-client-services-index .btn-enhanced{
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.fwh-client-services-index .btn-enhanced:hover{ transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.fwh-client-services-index .filter-tabs{
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-client-services-index-fadeIn 0.6s ease;
}
.fwh-client-services-index .filter-tab{
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}
.fwh-client-services-index .filter-tab:hover{ border-color: #0d6efd; color: #0d6efd; transform: translateY(-2px); }
.fwh-client-services-index .filter-tab.active{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-color: #0d6efd;
}
.fwh-client-services-index .quick-stats{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-client-services-index-fadeInUp 0.6s ease;
    flex-wrap: wrap;
}
.fwh-client-services-index .stat-mini{
    flex: 1;
    min-width: 140px;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}
.fwh-client-services-index .stat-mini:hover{ transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.fwh-client-services-index .stat-mini-icon{
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.fwh-client-services-index .stat-mini-icon.active{ background: rgba(40,167,69,0.12); color: #28a745; }
.fwh-client-services-index .stat-mini-icon.pending{ background: rgba(255,193,7,0.12); color: #e0a800; }
.fwh-client-services-index .stat-mini-icon.suspended{ background: rgba(220,53,69,0.12); color: #dc3545; }
.fwh-client-services-index .stat-mini-icon.total{ background: rgba(13,110,253,0.12); color: #0d6efd; }
.fwh-client-services-index .stat-mini-content h3{ margin: 0; font-weight: 700; font-size: 1.75rem; color: #2d3748; }
.fwh-client-services-index .stat-mini-content p{ margin: 0; color: #6c757d; font-size: 0.8rem; font-weight: 500; }
/* Search bar */
.fwh-client-services-index .services-search{
    position: relative;
    margin-bottom: 1.5rem;
}
.fwh-client-services-index .services-search input{
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}
.fwh-client-services-index .services-search input:focus{
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
}
.fwh-client-services-index .services-search i{
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
}
/* No results state */
.fwh-client-services-index .no-results{
    text-align: center;
    padding: 3rem 1rem;
    color: #718096;
    display: none;
}
.fwh-client-services-index .no-results i{ font-size: 3rem; color: #cbd5e0; margin-bottom: 1rem; display: block; }
@keyframes fwh-client-services-index-fadeIn{ from { opacity: 0; } to { opacity: 1; } }
@keyframes fwh-client-services-index-fadeInDown{
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fwh-client-services-index-fadeInUp{
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px){
    .fwh-client-services-index .services-header{ flex-direction: column; align-items: flex-start; }
    .fwh-client-services-index .quick-stats{ flex-direction: column; }
    .fwh-client-services-index .filter-tabs{ width: 100%; }
    .fwh-client-services-index .filter-tab{ flex: 1; text-align: center; }
}


/* ---- client/services/show ---- */

/* ===== SERVICE DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-services-show .service-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-client-services-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-services-show .service-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    word-break: break-all;
}

.fwh-client-services-show .service-header-info h2 i{
    color: #0d6efd;
}

.fwh-client-services-show .service-header-info .status-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Alert Boxes */
.fwh-client-services-show .alert-due{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-services-show-slideInDown 0.6s ease;
}

.fwh-client-services-show .alert-due i{
    font-size: 2rem;
}

.fwh-client-services-show .alert-due-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.fwh-client-services-show .alert-due-content p{
    margin: 0;
}

.fwh-client-services-show .alert-warning-custom{
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left-color: #ffc107;
}

.fwh-client-services-show .alert-warning-custom i{
    color: #ff6b35;
}

.fwh-client-services-show .alert-danger-custom{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
}

.fwh-client-services-show .alert-danger-custom i{
    color: #dc3545;
}

/* Enhanced Cards */
.fwh-client-services-show .details-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-services-show-fadeInUp 0.6s ease;
}

.fwh-client-services-show .details-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-services-show .details-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-services-show .details-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-services-show .details-card .card-body{
    padding: 2rem;
}

/* Info Table */
.fwh-client-services-show .info-table{
    margin: 0;
}

.fwh-client-services-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-services-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-client-services-show .info-table tr:hover{
    background: #f8f9fa;
}

.fwh-client-services-show .info-table th{
    font-weight: 600;
    color: #495057;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
}

.fwh-client-services-show .info-table td{
    color: #6c757d;
    padding: 1rem;
    border: none;
}

/* cPanel Access Card */
.fwh-client-services-show .cpanel-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    animation: fwh-client-services-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-services-show .cpanel-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-services-show .cpanel-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-services-show .cpanel-info{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.fwh-client-services-show .cpanel-info i{
    font-size: 2rem;
    color: #28a745;
}

.fwh-client-services-show .cpanel-info-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fwh-client-services-show .cpanel-info-content span{
    color: #6c757d;
    font-family: "Courier New", monospace;
    font-size: 1.1rem;
}

/* Server Info Card */
.fwh-client-services-show .server-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-services-show-fadeInUp 0.6s ease 0.4s both;
}

/* Sidebar Cards */
.fwh-client-services-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-client-services-show-fadeInRight 0.6s ease;
}

.fwh-client-services-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-services-show .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-services-show .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Action Buttons */
.fwh-client-services-show .action-buttons{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fwh-client-services-show .btn-action{
    padding: 0.875rem 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-services-show .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-services-show .btn-action i{
    font-size: 1.1rem;
}

/* Invoice List */
.fwh-client-services-show .invoice-list{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fwh-client-services-show .invoice-item{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.fwh-client-services-show .invoice-item:hover{
    border-color: #0d6efd;
    background: #f8f9fa;
    transform: translateX(4px);
}

.fwh-client-services-show .invoice-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fwh-client-services-show .invoice-number{
    font-weight: 600;
    color: #495057;
}

.fwh-client-services-show .invoice-amount{
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Enhanced Button */
.fwh-client-services-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-services-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Nameserver List */
.fwh-client-services-show .nameserver-item{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-services-show .nameserver-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-services-show .nameserver-item i{
    color: #0d6efd;
    font-size: 1.25rem;
}

.fwh-client-services-show .nameserver-content strong{
    display: block;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.fwh-client-services-show .nameserver-content span{
    color: #6c757d;
    font-size: 0.95rem;
    font-family: "Courier New", monospace;
}

/* Animations */
@keyframes fwh-client-services-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-services-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-services-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-client-services-show-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-services-show .service-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-services-show .service-header .btn{
        width: 100%;
    }
    
    .fwh-client-services-show .sidebar-card{
        position: static;
    }
}


/* ---- client/tickets/create ---- */

/* ===== OPEN NEW TICKET ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-tickets-create .ticket-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-tickets-create .ticket-header h2{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-create .ticket-header h2 i{
    color: #0d6efd;
}

/* Form Card */
.fwh-client-tickets-create .form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-tickets-create-fadeInUp 0.6s ease;
}

.fwh-client-tickets-create .form-card .card-body{
    padding: 2.5rem;
}

/* Form Elements */
.fwh-client-tickets-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-create .form-label i{
    color: #0d6efd;
}

.fwh-client-tickets-create .form-label .required{
    color: #dc3545;
}

.fwh-client-tickets-create .form-control, .fwh-client-tickets-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-tickets-create .form-control:focus, .fwh-client-tickets-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-client-tickets-create .form-control.is-invalid, .fwh-client-tickets-create .form-select.is-invalid{
    border-color: #dc3545;
}

.fwh-client-tickets-create .form-control.is-invalid:focus, .fwh-client-tickets-create .form-select.is-invalid:focus{
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.fwh-client-tickets-create textarea.form-control{
    resize: vertical;
    min-height: 200px;
}

.fwh-client-tickets-create .form-text{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.fwh-client-tickets-create .form-text i{
    color: #0d6efd;
}

/* Department Icons */
.fwh-client-tickets-create .department-option{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Priority Badges */
.fwh-client-tickets-create .priority-select option[value="urgent"]{
    background: #dc3545;
    color: white;
}

.fwh-client-tickets-create .priority-select option[value="high"]{
    background: #ffc107;
}

.fwh-client-tickets-create .priority-select option[value="medium"]{
    background: #17a2b8;
}

.fwh-client-tickets-create .priority-select option[value="low"]{
    background: #28a745;
}

/* Enhanced Button */
.fwh-client-tickets-create .btn-submit{
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-client-tickets-create .btn-submit:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fwh-client-tickets-create .btn-submit i{
    font-size: 1.25rem;
}

/* Sidebar Cards */
.fwh-client-tickets-create .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-client-tickets-create-fadeInRight 0.6s ease;
}

.fwh-client-tickets-create .sidebar-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-tickets-create .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-create .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Response Time List */
.fwh-client-tickets-create .response-times{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-tickets-create .response-times li{
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.fwh-client-tickets-create .response-times li:hover{
    background: #f8f9fa;
    transform: translateX(4px);
}

.fwh-client-tickets-create .response-times li strong{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
}

.fwh-client-tickets-create .response-times li span{
    color: #6c757d;
    font-size: 0.9rem;
}

.fwh-client-tickets-create .priority-urgent{
    border-left: 4px solid #dc3545;
}

.fwh-client-tickets-create .priority-high{
    border-left: 4px solid #ffc107;
}

.fwh-client-tickets-create .priority-medium{
    border-left: 4px solid #17a2b8;
}

.fwh-client-tickets-create .priority-low{
    border-left: 4px solid #28a745;
}

/* Tips List */
.fwh-client-tickets-create .tips-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-client-tickets-create .tips-list li{
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.fwh-client-tickets-create .tips-list li:hover{
    background: #f8f9fa;
    transform: translateX(4px);
}

.fwh-client-tickets-create .tips-list li i{
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-client-tickets-create .tips-list li a{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.fwh-client-tickets-create .tips-list li a:hover{
    text-decoration: underline;
}

/* Character Counter */
.fwh-client-tickets-create .character-counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-client-tickets-create .character-count{
    font-weight: 600;
}

/* Help Box */
.fwh-client-tickets-create .help-box{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.fwh-client-tickets-create .help-box h6{
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-create .help-box h6 i{
    color: #0d6efd;
}

.fwh-client-tickets-create .help-box p{
    color: #495057;
    margin: 0;
}

/* Enhanced Button */
.fwh-client-tickets-create .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-tickets-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-client-tickets-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-create-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-tickets-create .ticket-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-tickets-create .ticket-header .btn{
        width: 100%;
    }
    
    .fwh-client-tickets-create .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-client-tickets-create .btn-submit{
        width: 100%;
    }
}


/* ---- client/tickets/index ---- */

/* ===== SUPPORT TICKETS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-tickets-index .tickets-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-tickets-index .tickets-header h2{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-index .tickets-header h2 i{
    color: #0d6efd;
}

.fwh-client-tickets-index .tickets-count{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Filter Buttons */
.fwh-client-tickets-index .filter-buttons{
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-client-tickets-index-fadeIn 0.6s ease;
}

.fwh-client-tickets-index .btn-filter{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-tickets-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-client-tickets-index .empty-tickets{
    text-align: center;
    padding: 4rem 2rem;
    animation: fwh-client-tickets-index-fadeIn 0.6s ease;
}

.fwh-client-tickets-index .empty-tickets i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-client-tickets-index-float 3s ease-in-out infinite;
}

@keyframes fwh-client-tickets-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-client-tickets-index .empty-tickets h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-client-tickets-index .empty-tickets p{
    color: #718096;
    font-size: 1.1rem;
}

/* Tickets Table Card */
.fwh-client-tickets-index .tickets-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-client-tickets-index-fadeInUp 0.6s ease;
}

.fwh-client-tickets-index .tickets-card:hover{
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.fwh-client-tickets-index .tickets-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-client-tickets-index .tickets-table{
    margin: 0;
}

.fwh-client-tickets-index .tickets-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-client-tickets-index .tickets-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-client-tickets-index .tickets-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-client-tickets-index .tickets-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.01);
}

.fwh-client-tickets-index .tickets-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-client-tickets-index .tickets-table tbody tr:last-child{
    border-bottom: none;
}

/* Ticket Number */
.fwh-client-tickets-index .ticket-number{
    font-weight: 700;
    color: #495057;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
}

/* Subject Link */
.fwh-client-tickets-index .ticket-subject{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .ticket-subject:hover{
    color: #0a58ca;
    transform: translateX(4px);
}

/* Department Badge */
.fwh-client-tickets-index .department-badge{
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.fwh-client-tickets-index .department-badge i{
    font-size: 0.9rem;
}

/* Priority Badges */
.fwh-client-tickets-index .badge-priority{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .badge-priority i{
    font-size: 0.75rem;
}

/* Status Badges */
.fwh-client-tickets-index .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .badge-status i{
    font-size: 0.75rem;
}

/* Time Display */
.fwh-client-tickets-index .time-display{
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .time-display i{
    color: #0d6efd;
}

/* Action Buttons */
.fwh-client-tickets-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Quick Stats */
.fwh-client-tickets-index .quick-stats{
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-index-fadeInUp 0.6s ease;
}

.fwh-client-tickets-index .stat-card{
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.fwh-client-tickets-index .stat-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.fwh-client-tickets-index .stat-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.fwh-client-tickets-index .stat-icon.open{
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.2) 100%);
    color: #28a745;
}

.fwh-client-tickets-index .stat-icon.closed{
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(108, 117, 125, 0.2) 100%);
    color: #6c757d;
}

.fwh-client-tickets-index .stat-icon.total{
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.2) 100%);
    color: #0d6efd;
}

.fwh-client-tickets-index .stat-content h3{
    margin: 0;
    font-weight: 700;
    font-size: 1.75rem;
    color: #2d3748;
}

.fwh-client-tickets-index .stat-content p{
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Enhanced Button */
.fwh-client-tickets-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-tickets-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-client-tickets-index-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-tickets-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-tickets-index .tickets-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-tickets-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-client-tickets-index .btn-filter{
        flex: 1;
        justify-content: center;
    }
    
    .fwh-client-tickets-index .quick-stats{
        flex-direction: column;
    }
    
    .fwh-client-tickets-index .tickets-table thead th, .fwh-client-tickets-index .tickets-table tbody td{
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .fwh-client-tickets-index .btn-action{
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}


/* ---- client/tickets/show ---- */

/* ===== TICKET DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-client-tickets-show .ticket-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-client-tickets-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-client-tickets-show .ticket-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-show .ticket-header-info h2 i{
    color: #0d6efd;
}

.fwh-client-tickets-show .ticket-header-info .status-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Conversation Card */
.fwh-client-tickets-show .conversation-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-client-tickets-show-fadeInUp 0.6s ease;
}

.fwh-client-tickets-show .conversation-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-client-tickets-show .conversation-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    flex: 1;
}

.fwh-client-tickets-show .conversation-card .card-body{
    padding: 2rem;
    max-height: 600px;
    overflow-y: auto;
}

/* Reply Message */
.fwh-client-tickets-show .reply-message{
    margin-bottom: 1.5rem;
    border-radius: 12px;
    padding: 1.5rem;
    animation: fwh-client-tickets-show-fadeIn 0.5s ease;
    position: relative;
}

.fwh-client-tickets-show .reply-message.client-message{
    background: white;
    border: 2px solid #e9ecef;
    margin-left: 0;
    margin-right: 2rem;
}

.fwh-client-tickets-show .reply-message.staff-message{
    background: linear-gradient(135deg, #e7f3ff 0%, #f8f9fa 100%);
    border-left: 4px solid #0d6efd;
    margin-right: 0;
    margin-left: 2rem;
}

.fwh-client-tickets-show .reply-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.fwh-client-tickets-show .reply-author{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #2d3748;
}

.fwh-client-tickets-show .reply-author-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.fwh-client-tickets-show .client-avatar{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.fwh-client-tickets-show .staff-avatar{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.fwh-client-tickets-show .staff-badge{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-show .reply-time{
    color: #6c757d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-client-tickets-show .reply-time i{
    color: #0d6efd;
}

.fwh-client-tickets-show .reply-content{
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Reply Form Card */
.fwh-client-tickets-show .reply-form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-tickets-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-client-tickets-show .reply-form-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-client-tickets-show .reply-form-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-show .reply-form-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-client-tickets-show .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.fwh-client-tickets-show .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Closed Ticket Notice */
.fwh-client-tickets-show .closed-notice{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-client-tickets-show-fadeIn 0.6s ease;
}

.fwh-client-tickets-show .closed-notice i{
    font-size: 2rem;
    color: #dc3545;
}

.fwh-client-tickets-show .closed-notice-content h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #721c24;
}

.fwh-client-tickets-show .closed-notice-content p{
    margin: 0;
    color: #721c24;
}

/* Sidebar Card */
.fwh-client-tickets-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-client-tickets-show-fadeInRight 0.6s ease;
    position: sticky;
    top: 80px;
}

.fwh-client-tickets-show .info-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 1.25rem;
}

.fwh-client-tickets-show .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-client-tickets-show .info-card .card-body{
    padding: 1.5rem;
}

/* Info Item */
.fwh-client-tickets-show .info-item{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-client-tickets-show .info-item:hover{
    background: #e9ecef;
    transform: translateX(4px);
}

.fwh-client-tickets-show .info-item:last-child{
    margin-bottom: 0;
}

.fwh-client-tickets-show .info-item i{
    color: #0d6efd;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-client-tickets-show .info-item-content{
    flex: 1;
}

.fwh-client-tickets-show .info-item-content strong{
    display: block;
    color: #495057;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-client-tickets-show .info-item-content span{
    color: #6c757d;
    font-size: 0.95rem;
}

/* Priority and Status Badges */
.fwh-client-tickets-show .badge-status{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Button */
.fwh-client-tickets-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-client-tickets-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-client-tickets-show .btn-submit{
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-client-tickets-show .btn-submit:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Character Counter */
.fwh-client-tickets-show .character-counter{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-client-tickets-show .character-count{
    font-weight: 600;
}

/* Scrollbar Styling */
.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar{
    width: 8px;
}

.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar-track{
    background: #f8f9fa;
    border-radius: 4px;
}

.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar-thumb{
    background: #dee2e6;
    border-radius: 4px;
}

.fwh-client-tickets-show .conversation-card .card-body::-webkit-scrollbar-thumb:hover{
    background: #cbd5e0;
}

/* Animations */
@keyframes fwh-client-tickets-show-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-client-tickets-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-client-tickets-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-client-tickets-show .ticket-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-client-tickets-show .ticket-header .btn{
        width: 100%;
    }
    
    .fwh-client-tickets-show .reply-message.client-message, .fwh-client-tickets-show .reply-message.staff-message{
        margin-left: 0;
        margin-right: 0;
    }
    
    .fwh-client-tickets-show .info-card{
        position: static;
    }
    
    .fwh-client-tickets-show .conversation-card .card-body{
        max-height: 400px;
    }
}


/* ---- admin/announcements/index ---- */

/* ===== ANNOUNCEMENTS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-announcements-index .announcements-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-announcements-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-announcements-index .announcements-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-announcements-index .announcements-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-announcements-index .announcements-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.fwh-admin-announcements-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-announcements-index-fadeInUp 0.6s ease;
}

.fwh-admin-announcements-index .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-announcements-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-announcements-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fwh-admin-announcements-index .stat-card:hover::before{
    transform: scale(1.5);
}

.fwh-admin-announcements-index .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-announcements-index .stat-card.primary::before{ background: white; }

.fwh-admin-announcements-index .stat-card.success{ background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.fwh-admin-announcements-index .stat-card.success::before{ background: white; }

.fwh-admin-announcements-index .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.fwh-admin-announcements-index .stat-card.warning::before{ background: white; }

.fwh-admin-announcements-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-announcements-index .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-announcements-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-announcements-index .stat-value{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-announcements-index .stat-icon{
    font-size: 3rem;
    opacity: 0.3;
}

/* Announcements Card */
.fwh-admin-announcements-index .announcements-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-announcements-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-announcements-index .announcements-card .card-body{
    padding: 2rem;
}

/* Search Box */
.fwh-admin-announcements-index .search-container{
    margin-bottom: 2rem;
}

.fwh-admin-announcements-index .search-form{
    display: flex;
    gap: 1rem;
    max-width: 650px;
}

.fwh-admin-announcements-index .search-input{
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-announcements-index .search-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.fwh-admin-announcements-index .search-btn{
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.fwh-admin-announcements-index .search-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

/* Announcements Table */
.fwh-admin-announcements-index .announcements-table{
    margin: 0;
}

.fwh-admin-announcements-index .announcements-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-announcements-index .announcements-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-announcements-index .announcements-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-announcements-index .announcements-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.002);
}

.fwh-admin-announcements-index .announcements-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-admin-announcements-index .announcements-table tbody tr:last-child{
    border-bottom: none;
}

/* Announcement Cell */
.fwh-admin-announcements-index .announcement-title{
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.fwh-admin-announcements-index .announcement-excerpt{
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.35rem 0 0 0;
    max-width: 520px;
}

/* Status Badge */
.fwh-admin-announcements-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

/* Type Badge */
.fwh-admin-announcements-index .type-badge{
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.825rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Action Button */
.fwh-admin-announcements-index .action-btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-admin-announcements-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fwh-admin-announcements-index .action-buttons{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Empty State */
.fwh-admin-announcements-index .empty-state{
    text-align: center;
    padding: 5rem 2rem;
}

.fwh-admin-announcements-index .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-announcements-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-announcements-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-announcements-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-announcements-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Button */
.fwh-admin-announcements-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-announcements-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal */
.fwh-admin-announcements-index .modal-content{
    border-radius: 16px;
    border: none;
}

.fwh-admin-announcements-index .modal-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.fwh-admin-announcements-index .modal-header .btn-close{
    filter: invert(1);
}

.fwh-admin-announcements-index .modal-body{
    padding: 2rem;
}

.fwh-admin-announcements-index .modal-footer{
    padding: 1.5rem 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Form Elements */
.fwh-admin-announcements-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-announcements-index .form-control, .fwh-admin-announcements-index .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-announcements-index .form-control:focus, .fwh-admin-announcements-index .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Animations */
@keyframes fwh-admin-announcements-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-announcements-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-announcements-index .announcements-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-announcements-index .stats-grid{
        grid-template-columns: 1fr;
    }

    .fwh-admin-announcements-index .search-form{
        flex-direction: column;
    }

    .fwh-admin-announcements-index .search-btn{
        width: 100%;
    }

    .fwh-admin-announcements-index .announcements-table{
        font-size: 0.875rem;
    }

    .fwh-admin-announcements-index .announcements-table thead th, .fwh-admin-announcements-index .announcements-table tbody td{
        padding: 1rem 0.75rem;
    }

    .fwh-admin-announcements-index .action-buttons{
        flex-direction: column;
    }

    .fwh-admin-announcements-index .action-buttons .btn{
        width: 100%;
    }
}


/* ---- admin/api/index ---- */

.fwh-admin-api-index .api-endpoint{
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fwh-admin-api-index .api-method{
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-block;
    margin-right: 1rem;
}

.fwh-admin-api-index .method-get{ background: #d1ecf1; color: #0c5460; }
.fwh-admin-api-index .method-post{ background: #d4edda; color: #155724; }
.fwh-admin-api-index .method-put{ background: #fff3cd; color: #856404; }
.fwh-admin-api-index .method-delete{ background: #f8d7da; color: #721c24; }

.fwh-admin-api-index .api-path{
    font-family: "Courier New", monospace;
    color: #495057;
    font-weight: 600;
}

.fwh-admin-api-index .code-example{
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
}

.fwh-admin-api-index .param-table{
    width: 100%;
    margin: 1rem 0;
}

.fwh-admin-api-index .param-table th{
    background: #f8f9fa;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #495057;
}

.fwh-admin-api-index .param-table td{
    padding: 0.75rem;
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-api-index .param-required{
    color: #dc3545;
    font-weight: 600;
}


/* ---- admin/changelog ---- */

.fwh-admin-changelog .changelog-header{
    margin-bottom: 2rem;
}

.fwh-admin-changelog .changelog-header h2{
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-size: 1.75rem;
}

.fwh-admin-changelog .changelog-header h2 i{
    color: #4e73df;
}

.fwh-admin-changelog .changelog-subtitle{
    color: #858796;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.fwh-admin-changelog .changelog-card{
    background: white;
    border-radius: 12px;
    box-shadow: 0 0.15rem 1.75rem rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.fwh-admin-changelog .changelog-version{
    background: #f8f9fc;
    border-left: 4px solid #4e73df;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
}

.fwh-admin-changelog .version-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-changelog .version-number{
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a5c69;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-changelog .version-badge{
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #4e73df;
    color: white;
}

.fwh-admin-changelog .version-date{
    color: #858796;
    font-size: 0.9rem;
    font-weight: 600;
}

.fwh-admin-changelog .changelog-body{
    padding: 1.5rem;
}

.fwh-admin-changelog .changelog-section{
    margin-bottom: 1.5rem;
}

.fwh-admin-changelog .changelog-section:last-child{
    margin-bottom: 0;
}

.fwh-admin-changelog .section-title{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.fwh-admin-changelog .section-title.added{
    color: #1cc88a;
}

.fwh-admin-changelog .section-title.fixed{
    color: #4e73df;
}

.fwh-admin-changelog .section-title.improved{
    color: #36b9cc;
}

.fwh-admin-changelog .section-title.removed{
    color: #e74a3b;
}

.fwh-admin-changelog .changelog-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fwh-admin-changelog .changelog-list li{
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #5a5c69;
    line-height: 1.6;
}

.fwh-admin-changelog .changelog-list li::before{
    content: "•";
    position: absolute;
    left: 0;
    color: #858796;
    font-weight: bold;
}

.fwh-admin-changelog .highlight-feature{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}


/* ---- admin/customers/create ---- */

/* ===== CREATE CUSTOMER ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-customers-create .customer-create-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-customers-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-customers-create .customer-create-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-customers-create .customer-create-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-customers-create .customer-create-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Page Layout */
.fwh-admin-customers-create .customer-create-wrapper{
    animation: fwh-admin-customers-create-fadeInUp 0.6s ease;
}

.fwh-admin-customers-create .customer-create-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

/* Cards */
.fwh-admin-customers-create .customer-create-card, .fwh-admin-customers-create .customer-help-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
}

.fwh-admin-customers-create .customer-create-card .card-body, .fwh-admin-customers-create .customer-help-card .card-body{
    padding: 2rem;
}

.fwh-admin-customers-create .customer-section-title{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-customers-create .customer-section-title i{
    color: #0d6efd;
}

.fwh-admin-customers-create .customer-section-description{
    color: #6c757d;
    margin: 0 0 1.5rem 0;
}

.fwh-admin-customers-create .customer-form-section{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.fwh-admin-customers-create .customer-form-section:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

/* Form Elements */
.fwh-admin-customers-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-customers-create .form-label i{
    color: #0d6efd;
    margin-right: 0.35rem;
}

.fwh-admin-customers-create .required-marker{
    color: #dc3545;
    font-weight: 700;
}

.fwh-admin-customers-create .form-control, .fwh-admin-customers-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-customers-create .form-control:focus, .fwh-admin-customers-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-admin-customers-create .form-text{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Alert Styling */
.fwh-admin-customers-create .alert-enhanced{
    border: none;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-customers-create .alert-enhanced ul{
    margin: 0.75rem 0 0 1.25rem;
    padding: 0;
}

.fwh-admin-customers-create .alert-enhanced li{
    margin-bottom: 0.35rem;
}

.fwh-admin-customers-create .alert-enhanced li:last-child{
    margin-bottom: 0;
}

/* Help Card */
.fwh-admin-customers-create .customer-help-card{
    position: sticky;
    top: 1rem;
}

.fwh-admin-customers-create .help-icon{
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.fwh-admin-customers-create .help-list{
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
}

.fwh-admin-customers-create .help-list li{
    display: flex;
    gap: 0.75rem;
    align-items: start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f3f5;
    color: #495057;
}

.fwh-admin-customers-create .help-list li:last-child{
    border-bottom: none;
}

.fwh-admin-customers-create .help-list li i{
    color: #28a745;
    margin-top: 0.2rem;
}

/* Buttons */
.fwh-admin-customers-create .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-customers-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-customers-create .form-actions{
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

/* Preview Box */
.fwh-admin-customers-create .customer-preview{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.fwh-admin-customers-create .customer-preview-title{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-customers-create .customer-preview-row{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fwh-admin-customers-create .customer-preview-row:last-child{
    border-bottom: none;
}

.fwh-admin-customers-create .customer-preview-label{
    color: #6c757d;
    font-weight: 600;
}

.fwh-admin-customers-create .customer-preview-value{
    color: #2d3748;
    font-weight: 700;
    text-align: right;
}

/* Animations */
@keyframes fwh-admin-customers-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-customers-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-customers-create-pulseSoft{
    0%, 100% {
        box-shadow: 0 2px 8px rgba(13, 110, 253, 0.25);
    }
    50% {
        box-shadow: 0 4px 16px rgba(13, 110, 253, 0.4);
    }
}

.fwh-admin-customers-create .btn-primary.btn-enhanced{
    animation: fwh-admin-customers-create-pulseSoft 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px){
    .fwh-admin-customers-create .customer-create-grid{
        grid-template-columns: 1fr;
    }

    .fwh-admin-customers-create .customer-help-card{
        position: static;
    }
}

@media (max-width: 768px){
    .fwh-admin-customers-create .customer-create-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-customers-create .customer-create-card .card-body, .fwh-admin-customers-create .customer-help-card .card-body{
        padding: 1.5rem;
    }

    .fwh-admin-customers-create .form-actions{
        flex-direction: column-reverse;
    }

    .fwh-admin-customers-create .form-actions .btn{
        width: 100%;
    }
}


/* ---- admin/customers/index ---- */

/* ===== CUSTOMERS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-customers-index .customers-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-customers-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-customers-index .customers-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-customers-index .customers-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-customers-index .customers-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.fwh-admin-customers-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-customers-index-fadeInUp 0.6s ease;
}

.fwh-admin-customers-index .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-customers-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-customers-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fwh-admin-customers-index .stat-card:hover::before{
    transform: scale(1.5);
}

.fwh-admin-customers-index .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-customers-index .stat-card.primary::before{ background: white; }
.fwh-admin-customers-index .stat-card.success{ background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.fwh-admin-customers-index .stat-card.success::before{ background: white; }
.fwh-admin-customers-index .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.fwh-admin-customers-index .stat-card.warning::before{ background: white; }

.fwh-admin-customers-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-customers-index .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-customers-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-customers-index .stat-value{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-customers-index .stat-icon{
    font-size: 3rem;
    opacity: 0.3;
}

/* Customers Card */
.fwh-admin-customers-index .customers-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-customers-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-customers-index .customers-card .card-body{
    padding: 2rem;
}

/* Search Box */
.fwh-admin-customers-index .search-container{
    margin-bottom: 2rem;
}

.fwh-admin-customers-index .search-form{
    display: flex;
    gap: 1rem;
    max-width: 600px;
}

.fwh-admin-customers-index .search-input{
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-customers-index .search-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.fwh-admin-customers-index .search-btn{
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.fwh-admin-customers-index .search-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

/* Customers Table */
.fwh-admin-customers-index .customers-table{
    margin: 0;
}

.fwh-admin-customers-index .customers-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-customers-index .customers-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-customers-index .customers-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-customers-index .customers-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.002);
}

.fwh-admin-customers-index .customers-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-admin-customers-index .customers-table tbody tr:last-child{
    border-bottom: none;
}

/* Customer Cell */
.fwh-admin-customers-index .customer-cell{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-customers-index .customer-avatar{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.fwh-admin-customers-index .customer-info{
    flex: 1;
}

.fwh-admin-customers-index .customer-name{
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.fwh-admin-customers-index .customer-email{
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Status Badge */
.fwh-admin-customers-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Button */
.fwh-admin-customers-index .action-btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-admin-customers-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-customers-index .empty-state{
    text-align: center;
    padding: 5rem 2rem;
}

.fwh-admin-customers-index .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-customers-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-customers-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-customers-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-customers-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Button */
.fwh-admin-customers-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-customers-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal */
.fwh-admin-customers-index .modal-content{
    border-radius: 16px;
    border: none;
}

.fwh-admin-customers-index .modal-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.fwh-admin-customers-index .modal-header .btn-close{
    filter: invert(1);
}

.fwh-admin-customers-index .modal-body{
    padding: 2rem;
}

.fwh-admin-customers-index .modal-footer{
    padding: 1.5rem 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Form Elements */
.fwh-admin-customers-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-customers-index .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-customers-index .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Animations */
@keyframes fwh-admin-customers-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-customers-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-customers-index .customers-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-customers-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-customers-index .search-form{
        flex-direction: column;
    }
    
    .fwh-admin-customers-index .search-btn{
        width: 100%;
    }
    
    .fwh-admin-customers-index .customers-table{
        font-size: 0.875rem;
    }
    
    .fwh-admin-customers-index .customers-table thead th, .fwh-admin-customers-index .customers-table tbody td{
        padding: 1rem 0.75rem;
    }
    
    .fwh-admin-customers-index .customer-cell{
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ---- admin/customers/show ---- */

/* ===== SERVICE DETAILS ENHANCED STYLES ===== */

.fwh-admin-customers-show .service-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-customers-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-customers-show .service-header-info{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fwh-admin-customers-show .service-avatar{
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.fwh-admin-customers-show .service-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-customers-show .service-meta{
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fwh-admin-customers-show .meta-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.fwh-admin-customers-show .status-banner{
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fwh-admin-customers-show-fadeInUp 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-customers-show .status-banner.active{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.fwh-admin-customers-show .status-banner.pending{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #6c757d;
}

.fwh-admin-customers-show .status-banner.suspended{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
}

.fwh-admin-customers-show .status-banner.terminated, .fwh-admin-customers-show .status-banner.cancelled, .fwh-admin-customers-show .status-banner.canceled{
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
    border: 2px solid #dc3545;
}

.fwh-admin-customers-show .status-banner-content{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-customers-show .status-banner-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.fwh-admin-customers-show .status-banner.active .status-banner-icon{ background: #28a745; }
.fwh-admin-customers-show .status-banner.pending .status-banner-icon{ background: #6c757d; }
.fwh-admin-customers-show .status-banner.suspended .status-banner-icon{ background: #ffc107; }
.fwh-admin-customers-show .status-banner.terminated .status-banner-icon, .fwh-admin-customers-show .status-banner.cancelled .status-banner-icon, .fwh-admin-customers-show .status-banner.canceled .status-banner-icon{ background: #dc3545; }

.fwh-admin-customers-show .status-banner-text h5{
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.fwh-admin-customers-show .status-banner-text p{
    margin: 0;
    font-size: 0.875rem;
}

.fwh-admin-customers-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-customers-show-fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-customers-show .info-card:nth-child(1){ animation-delay: 0.2s; }
.fwh-admin-customers-show .info-card:nth-child(2){ animation-delay: 0.3s; }
.fwh-admin-customers-show .info-card:nth-child(3){ animation-delay: 0.4s; }

.fwh-admin-customers-show .info-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-customers-show .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-customers-show .info-card .card-header .badge{
    margin-left: auto;
}

.fwh-admin-customers-show .info-card .card-body{
    padding: 2rem;
}

.fwh-admin-customers-show .info-table{
    margin: 0;
}

.fwh-admin-customers-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-customers-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-admin-customers-show .info-table th{
    font-weight: 600;
    color: #6c757d;
    padding: 1rem 0.75rem;
    width: 35%;
}

.fwh-admin-customers-show .info-table td{
    padding: 1rem 0.75rem;
    color: #2d3748;
    font-weight: 500;
}

.fwh-admin-customers-show .data-table{
    margin: 0;
}

.fwh-admin-customers-show .data-table thead{
    background: #f8f9fa;
}

.fwh-admin-customers-show .data-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-customers-show .data-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-customers-show .data-table tbody tr:hover{
    background: #f8f9fa;
}

.fwh-admin-customers-show .data-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-customers-show .data-table tbody tr:last-child{
    border-bottom: none;
}

.fwh-admin-customers-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-admin-customers-show-fadeInRight 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-customers-show .sidebar-card:nth-child(1){ animation-delay: 0.5s; }
.fwh-admin-customers-show .sidebar-card:nth-child(2){ animation-delay: 0.6s; }

.fwh-admin-customers-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-customers-show .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-customers-show .sidebar-card .card-body{
    padding: 1.5rem;
}

.fwh-admin-customers-show .stat-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.fwh-admin-customers-show .stat-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-customers-show .stat-info{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-customers-show .stat-icon{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.fwh-admin-customers-show .stat-icon.primary{ background: #e7f1ff; color: #0d6efd; }
.fwh-admin-customers-show .stat-icon.success{ background: #d4edda; color: #28a745; }
.fwh-admin-customers-show .stat-icon.warning{ background: #fff3cd; color: #ffc107; }
.fwh-admin-customers-show .stat-icon.info{ background: #d1ecf1; color: #17a2b8; }
.fwh-admin-customers-show .stat-icon.danger{ background: #f8d7da; color: #dc3545; }

.fwh-admin-customers-show .stat-label{
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
}

.fwh-admin-customers-show .stat-value{
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-customers-show .action-btn{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.fwh-admin-customers-show .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.fwh-admin-customers-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-customers-show .empty-state{
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.fwh-admin-customers-show .empty-state i{
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.fwh-admin-customers-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-customers-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-customers-show .domain-link{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
}

.fwh-admin-customers-show .domain-link:hover{
    text-decoration: underline;
}

.fwh-admin-customers-show .notes-box{
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    color: #495057;
    white-space: pre-wrap;
}

@keyframes fwh-admin-customers-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-customers-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-customers-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px){
    .fwh-admin-customers-show .service-details-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-customers-show .service-header-info{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-customers-show .service-meta{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-customers-show .status-banner{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-customers-show .data-table{
        font-size: 0.875rem;
    }

    .fwh-admin-customers-show .data-table thead th, .fwh-admin-customers-show .data-table tbody td{
        padding: 0.75rem 0.5rem;
    }
}


/* ---- admin/documentation ---- */

.fwh-admin-documentation .docs-header{
    margin-bottom: 2rem;
    position: relative;
}

.fwh-admin-documentation .docs-header h2{
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-size: 1.75rem;
}

.fwh-admin-documentation .docs-header h2 i{
    color: #4e73df;
}

.fwh-admin-documentation .docs-subtitle{
    color: #858796;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* Search Box */
.fwh-admin-documentation .docs-search{
    position: relative;
    margin-bottom: 2rem;
}

.fwh-admin-documentation .docs-search input{
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: 2px solid #e3e6f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-documentation .docs-search input:focus{
    outline: none;
    border-color: #4e73df;
    box-shadow: 0 0 0 4px rgba(78, 115, 223, 0.1);
}

.fwh-admin-documentation .docs-search .search-icon{
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #858796;
    font-size: 1.1rem;
}

.fwh-admin-documentation .docs-search .clear-icon{
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #858796;
    cursor: pointer;
    display: none;
}

.fwh-admin-documentation .docs-card{
    background: white;
    border-radius: 12px;
    box-shadow: 0 0.15rem 1.75rem rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.fwh-admin-documentation .docs-card-header{
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    border-bottom: 2px solid #e3e6f0;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-documentation .docs-card-header h6{
    margin: 0;
    font-weight: 700;
    color: #5a5c69;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.fwh-admin-documentation .docs-card-header h6 i{
    color: #4e73df;
}

.fwh-admin-documentation .docs-card-body{
    padding: 1.5rem;
}

/* Table of Contents */
.fwh-admin-documentation .docs-toc{
    position: sticky;
    top: 90px;
}

.fwh-admin-documentation .toc-item{
    padding: 0.75rem 1rem;
    color: #858796;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.fwh-admin-documentation .toc-item i{
    font-size: 0.8rem;
    width: 16px;
}

.fwh-admin-documentation .toc-item:hover{
    color: #4e73df;
    border-left-color: #4e73df;
    background: #f8f9fc;
    padding-left: 1.5rem;
}

.fwh-admin-documentation .toc-item.active{
    color: #4e73df;
    border-left-color: #4e73df;
    font-weight: 600;
    background: #f8f9fc;
}

/* Documentation Content */
.fwh-admin-documentation .docs-section{
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e3e6f0;
}

.fwh-admin-documentation .docs-section:last-child{
    border-bottom: none;
}

.fwh-admin-documentation .section-title{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #4e73df;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-documentation .section-title i{
    color: #4e73df;
}

.fwh-admin-documentation .docs-content p{
    color: #5a5c69;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.fwh-admin-documentation .docs-content ul, .fwh-admin-documentation .docs-content ol{
    color: #5a5c69;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.fwh-admin-documentation .docs-content li{
    margin-bottom: 0.75rem;
}

.fwh-admin-documentation .docs-content strong{
    color: #4e73df;
    font-weight: 600;
}

.fwh-admin-documentation .docs-content code{
    background: #2d3748;
    color: #e2e8f0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: "Courier New", monospace;
}

.fwh-admin-documentation .code-block{
    background: #2d3748;
    color: #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    position: relative;
}

.fwh-admin-documentation .code-block::before{
    content: "CODE";
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.7rem;
    color: #858796;
    font-weight: 600;
}

/* Info Box */
.fwh-admin-documentation .info-box{
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.1), rgba(54, 185, 204, 0.05));
    border-left: 4px solid #36b9cc;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.fwh-admin-documentation .info-box.warning{
    background: linear-gradient(135deg, rgba(246, 194, 62, 0.1), rgba(246, 194, 62, 0.05));
    border-left-color: #f6c23e;
}

.fwh-admin-documentation .info-box.success{
    background: linear-gradient(135deg, rgba(28, 200, 138, 0.1), rgba(28, 200, 138, 0.05));
    border-left-color: #1cc88a;
}

.fwh-admin-documentation .info-box.danger{
    background: linear-gradient(135deg, rgba(231, 74, 59, 0.1), rgba(231, 74, 59, 0.05));
    border-left-color: #e74a3b;
}

.fwh-admin-documentation .info-box-title{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-documentation .info-box p{
    margin: 0;
    color: #5a5c69;
}

/* Video Tutorial Card */
.fwh-admin-documentation .video-card{
    background: white;
    border: 2px solid #e3e6f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fwh-admin-documentation .video-card:hover{
    border-color: #4e73df;
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.15);
    transform: translateY(-3px);
}

.fwh-admin-documentation .video-thumbnail{
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #4e73df, #36b9cc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.fwh-admin-documentation .video-play-icon{
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e73df;
    font-size: 1.5rem;
}

.fwh-admin-documentation .video-duration{
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.fwh-admin-documentation .video-title{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.fwh-admin-documentation .video-description{
    color: #858796;
    font-size: 0.85rem;
    margin: 0;
}

/* Quick Start Steps */
.fwh-admin-documentation .quick-start-step{
    background: white;
    border: 2px solid #e3e6f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.fwh-admin-documentation .quick-start-step:hover{
    border-color: #4e73df;
    box-shadow: 0 4px 12px rgba(78, 115, 223, 0.15);
}

.fwh-admin-documentation .step-number{
    position: absolute;
    top: -15px;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4e73df, #36b9cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(78, 115, 223, 0.3);
}

.fwh-admin-documentation .step-title{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.fwh-admin-documentation .step-content{
    color: #5a5c69;
    line-height: 1.6;
}

/* Collapsible Section */
.fwh-admin-documentation .collapsible-section{
    margin-bottom: 1rem;
}

.fwh-admin-documentation .collapsible-header{
    background: #f8f9fc;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.fwh-admin-documentation .collapsible-header:hover{
    background: #e9ecef;
    border-color: #4e73df;
}

.fwh-admin-documentation .collapsible-title{
    font-weight: 700;
    color: #5a5c69;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-documentation .collapsible-icon{
    color: #4e73df;
    transition: transform 0.3s ease;
}

.fwh-admin-documentation .collapsible-header.active .collapsible-icon{
    transform: rotate(90deg);
}

.fwh-admin-documentation .collapsible-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.fwh-admin-documentation .collapsible-content.show{
    max-height: 2000px;
    padding: 1.5rem;
    border: 1px solid #e3e6f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
}


/* ---- admin/domains/check ---- */

/* ===== DOMAIN CHECK PAGE - COMPLETE STYLING ===== */

/* Container */
.fwh-admin-domains-check .check-container{
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Section */
.fwh-admin-domains-check .check-header{
    text-align: center;
    margin-bottom: 3rem;
    animation: fwh-admin-domains-check-fadeInDown 0.6s ease;
}

.fwh-admin-domains-check .check-header h2{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.fwh-admin-domains-check .check-header h2 i{
    color: #667eea;
    margin-right: 0.5rem;
}

.fwh-admin-domains-check .check-header p{
    color: #6c757d;
    font-size: 1.2rem;
    margin: 0;
}

/* Back Button */
.fwh-admin-domains-check .back-button{
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-domains-check .back-button:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Search Card */
.fwh-admin-domains-check .search-card{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 2rem;
    animation: fwh-admin-domains-check-fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.fwh-admin-domains-check .search-card::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: fwh-admin-domains-check-pulse 15s ease-in-out infinite;
}

@keyframes fwh-admin-domains-check-pulse{
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.fwh-admin-domains-check .search-input-group{
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.fwh-admin-domains-check .search-input{
    width: 100%;
    padding: 1.5rem 1.75rem;
    font-size: 1.25rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.fwh-admin-domains-check .search-input:focus{
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    outline: none;
    background: #fff;
}

.fwh-admin-domains-check .search-input::placeholder{
    color: #999;
}

.fwh-admin-domains-check .search-btn{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
    color: #667eea;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.fwh-admin-domains-check .search-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #667eea;
}

.fwh-admin-domains-check .search-btn i{
    margin-right: 0.5rem;
}

.fwh-admin-domains-check .tld-suggestions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    z-index: 1;
    position: relative;
}

.fwh-admin-domains-check .tld-suggestions small{
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fwh-admin-domains-check .tld-badge{
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(10px);
}

.fwh-admin-domains-check .tld-badge:hover{
    background: #fff;
    color: #667eea;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Loading State */
.fwh-admin-domains-check .loading-spinner{
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fwh-admin-domains-check .loading-spinner i{
    font-size: 4rem;
    color: #667eea;
    animation: fwh-admin-domains-check-spin 1s linear infinite;
    margin-bottom: 1rem;
}

.fwh-admin-domains-check .loading-spinner p{
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes fwh-admin-domains-check-spin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error Alert */
.fwh-admin-domains-check .error-alert{
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    animation: fwh-admin-domains-check-shake 0.5s ease;
}

.fwh-admin-domains-check .error-alert strong{
    font-weight: 700;
}

@keyframes fwh-admin-domains-check-shake{
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Results Container */
.fwh-admin-domains-check .results-container{
    margin-top: 2rem;
}

.fwh-admin-domains-check .results-header{
    text-align: center;
    margin-bottom: 2rem;
}

.fwh-admin-domains-check .results-header h3{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.fwh-admin-domains-check .results-header p{
    color: #6c757d;
    font-size: 1.1rem;
}

/* Result Cards */
.fwh-admin-domains-check .result-card{
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    animation: fwh-admin-domains-check-slideInUp 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fwh-admin-domains-check .result-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-domains-check .result-card.available::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-domains-check .result-card.unavailable::before{
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.fwh-admin-domains-check .result-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.fwh-admin-domains-check .result-card:hover::before{
    width: 12px;
}

.fwh-admin-domains-check .result-info{
    flex: 1;
}

.fwh-admin-domains-check .result-domain{
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.fwh-admin-domains-check .result-status{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fwh-admin-domains-check .result-status.available{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.fwh-admin-domains-check .result-status.unavailable{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.fwh-admin-domains-check .result-status i{
    font-size: 1.1rem;
}

.fwh-admin-domains-check .result-price{
    text-align: right;
    margin-right: 2rem;
}

.fwh-admin-domains-check .price-label{
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fwh-admin-domains-check .price-value{
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fwh-admin-domains-check .result-actions{
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.fwh-admin-domains-check .result-actions .btn{
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fwh-admin-domains-check .result-actions .btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fwh-admin-domains-check .result-actions .btn i{
    margin-right: 0.5rem;
}

/* Popular TLDs Section */
.fwh-admin-domains-check .popular-tlds{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.fwh-admin-domains-check .popular-tlds h5{
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
    font-size: 1.5rem;
    text-align: center;
}

.fwh-admin-domains-check .popular-tlds h5 i{
    color: #ffc107;
    margin-right: 0.5rem;
}

.fwh-admin-domains-check .tld-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.fwh-admin-domains-check .tld-item{
    background: white;
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fwh-admin-domains-check .tld-item:hover{
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.fwh-admin-domains-check .tld-item .tld-name{
    font-weight: 700;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.fwh-admin-domains-check .tld-item .tld-price{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fwh-admin-domains-check-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-check-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-check-slideInUp{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px){
    .fwh-admin-domains-check .check-header h2{
        font-size: 2rem;
    }
    
    .fwh-admin-domains-check .search-card{
        padding: 2rem 1.5rem;
    }
    
    .fwh-admin-domains-check .search-input{
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .fwh-admin-domains-check .search-btn{
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .fwh-admin-domains-check .result-card{
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .fwh-admin-domains-check .result-price{
        margin-right: 0;
    }
    
    .fwh-admin-domains-check .result-actions{
        width: 100%;
    }
    
    .fwh-admin-domains-check .result-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-domains-check .tld-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fwh-admin-domains-check .popular-tlds{
        padding: 2rem 1.5rem;
    }
    
    .fwh-admin-domains-check .back-button{
        position: static;
        margin-bottom: 1rem;
        width: 100%;
    }
}

/* Print Styles */
@media print{
    .fwh-admin-domains-check .search-card, .fwh-admin-domains-check .popular-tlds, .fwh-admin-domains-check .back-button{
        display: none;
    }
}


/* ---- admin/domains/index ---- */

/* ===== DOMAIN MANAGEMENT ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-domains-index .domain-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-domains-index .domain-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-domains-index .domain-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-domains-index .domain-header-info p{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-domains-index .domain-header-actions{
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* API Warning Badge */
.fwh-admin-domains-index .api-warning{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Alert Enhancement */
.fwh-admin-domains-index .config-alert{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-domains-index-slideInDown 0.6s ease;
}

.fwh-admin-domains-index .config-alert .alert-icon{
    font-size: 2.5rem;
    color: #ffc107;
}

.fwh-admin-domains-index .config-alert pre{
    background: #1a1a1a !important;
    border-radius: 8px;
    padding: 1rem !important;
    margin: 0.75rem 0;
}

/* Stats Grid */
.fwh-admin-domains-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-index-fadeInUp 0.6s ease;
}

.fwh-admin-domains-index .stat-card{
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-domains-index .stat-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fwh-admin-domains-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-domains-index .stat-card:hover::before{
    width: 8px;
}

.fwh-admin-domains-index .stat-card.primary::before{
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-domains-index .stat-card.success::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-domains-index .stat-card.warning::before{
    background: linear-gradient(180deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-admin-domains-index .stat-card.info::before{
    background: linear-gradient(180deg, #17a2b8 0%, #138496 100%);
}

.fwh-admin-domains-index .stat-card.danger::before{
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.fwh-admin-domains-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.fwh-admin-domains-index .stat-info{
    flex: 1;
}

.fwh-admin-domains-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.fwh-admin-domains-index .stat-value{
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.fwh-admin-domains-index .stat-icon{
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.fwh-admin-domains-index .stat-card:hover .stat-icon{
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.fwh-admin-domains-index .stat-card.primary .stat-icon{
    background: #0d6efd;
    color: #0d6efd;
}

.fwh-admin-domains-index .stat-card.success .stat-icon{
    background: #28a745;
    color: #28a745;
}

.fwh-admin-domains-index .stat-card.warning .stat-icon{
    background: #ffc107;
    color: #ffc107;
}

.fwh-admin-domains-index .stat-card.info .stat-icon{
    background: #17a2b8;
    color: #17a2b8;
}

.fwh-admin-domains-index .stat-card.danger .stat-icon{
    background: #dc3545;
    color: #dc3545;
}

/* Search Result Card */
.fwh-admin-domains-index .search-result-card{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    animation: fwh-admin-domains-index-fadeInUp 0.6s ease;
}

.fwh-admin-domains-index .search-result-card h4{
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-domains-index .search-result-card p{
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.fwh-admin-domains-index .search-result-actions{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fwh-admin-domains-index .search-result-actions .btn{
    font-weight: 600;
}

/* Filter Card */
.fwh-admin-domains-index .filter-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-domains-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-domains-index .filter-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-admin-domains-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.fwh-admin-domains-index .form-control, .fwh-admin-domains-index .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-domains-index .form-control:focus, .fwh-admin-domains-index .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Table Card */
.fwh-admin-domains-index .table-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-admin-domains-index-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-domains-index .table-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-domains-index .table-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-domains-index .table-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-admin-domains-index .domains-table{
    margin: 0;
}

.fwh-admin-domains-index .domains-table thead{
    background: #f8f9fa;
}

.fwh-admin-domains-index .domains-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-domains-index .domains-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-domains-index .domains-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.01);
}

.fwh-admin-domains-index .domains-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-domains-index .domains-table tbody tr:last-child{
    border-bottom: none;
}

/* Row Highlights */
.fwh-admin-domains-index .domains-table tbody tr.expiring-soon{
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
}

.fwh-admin-domains-index .domains-table tbody tr.expired{
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
}

/* Domain Name Display */
.fwh-admin-domains-index .domain-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.fwh-admin-domains-index .domain-badge{
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Customer Info */
.fwh-admin-domains-index .customer-info{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fwh-admin-domains-index .customer-link{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fwh-admin-domains-index .customer-link:hover{
    color: #0a58ca;
    transform: translateX(2px);
}

.fwh-admin-domains-index .customer-email{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Status Badges */
.fwh-admin-domains-index .status-badge{
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Buttons */
.fwh-admin-domains-index .btn-actions{
    display: flex;
    gap: 0.25rem;
}

.fwh-admin-domains-index .btn-action{
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fwh-admin-domains-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* WHOIS Modal */
.fwh-admin-domains-index .whois-modal .modal-dialog{
    max-width: 800px;
}

.fwh-admin-domains-index .whois-content{
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    font-family: "Courier New", monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

.fwh-admin-domains-index .whois-loading{
    text-align: center;
    padding: 3rem;
}

.fwh-admin-domains-index .whois-loading i{
    font-size: 3rem;
    color: #0d6efd;
    animation: fwh-admin-domains-index-spin 1s linear infinite;
}

@keyframes fwh-admin-domains-index-spin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Empty State */
.fwh-admin-domains-index .empty-state{
    text-align: center;
    padding: 4rem 2rem;
}

.fwh-admin-domains-index .empty-state i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.fwh-admin-domains-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-domains-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Buttons */
.fwh-admin-domains-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-domains-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-domains-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-index-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-domains-index .domain-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-domains-index .domain-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-domains-index .domain-header-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-domains-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-domains-index .btn-actions{
        flex-direction: column;
    }
}


/* ---- admin/domains/pricing ---- */

/* ===== DOMAIN PRICING ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-domains-pricing .pricing-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-pricing-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-domains-pricing .pricing-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-domains-pricing .pricing-header-info h2 i{
    color: #28a745;
}

.fwh-admin-domains-pricing .pricing-header-info p{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-domains-pricing .pricing-header-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.fwh-admin-domains-pricing .pricing-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-pricing-fadeInUp 0.6s ease;
}

.fwh-admin-domains-pricing .pricing-stat-card{
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-domains-pricing .pricing-stat-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fwh-admin-domains-pricing .pricing-stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-domains-pricing .pricing-stat-card:hover::before{
    width: 8px;
}

.fwh-admin-domains-pricing .pricing-stat-card.success::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-domains-pricing .pricing-stat-card.primary::before{
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-domains-pricing .pricing-stat-card.warning::before{
    background: linear-gradient(180deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-admin-domains-pricing .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.fwh-admin-domains-pricing .stat-info{
    flex: 1;
}

.fwh-admin-domains-pricing .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.fwh-admin-domains-pricing .stat-value{
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.fwh-admin-domains-pricing .stat-icon{
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.fwh-admin-domains-pricing .pricing-stat-card:hover .stat-icon{
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.fwh-admin-domains-pricing .pricing-stat-card.success .stat-icon{
    background: #28a745;
    color: #28a745;
}

.fwh-admin-domains-pricing .pricing-stat-card.primary .stat-icon{
    background: #0d6efd;
    color: #0d6efd;
}

.fwh-admin-domains-pricing .pricing-stat-card.warning .stat-icon{
    background: #ffc107;
    color: #ffc107;
}

/* Pricing Table Card */
.fwh-admin-domains-pricing .pricing-table-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-admin-domains-pricing-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-domains-pricing .pricing-table-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-domains-pricing .pricing-table-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-domains-pricing .pricing-table-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-admin-domains-pricing .pricing-table{
    margin: 0;
}

.fwh-admin-domains-pricing .pricing-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-domains-pricing .pricing-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-domains-pricing .pricing-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-domains-pricing .pricing-table tbody tr:hover{
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.05) 0%, transparent 100%);
    transform: scale(1.005);
}

.fwh-admin-domains-pricing .pricing-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-domains-pricing .pricing-table tbody tr:last-child{
    border-bottom: none;
}

/* TLD Badge */
.fwh-admin-domains-pricing .tld-badge{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Price Display */
.fwh-admin-domains-pricing .price-display{
    font-weight: 700;
    font-size: 1.1rem;
    color: #2d3748;
}

.fwh-admin-domains-pricing .price-label{
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
    margin-top: 0.25rem;
}

/* Profit Badge */
.fwh-admin-domains-pricing .profit-badge{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-domains-pricing .profit-badge.negative{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Status Badge */
.fwh-admin-domains-pricing .status-badge{
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Buttons */
.fwh-admin-domains-pricing .action-buttons{
    display: flex;
    gap: 0.5rem;
}

.fwh-admin-domains-pricing .btn-action{
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fwh-admin-domains-pricing .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Button */
.fwh-admin-domains-pricing .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-domains-pricing .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal Enhancements */
.fwh-admin-domains-pricing .modal-content{
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.fwh-admin-domains-pricing .modal-header{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.fwh-admin-domains-pricing .modal-header .modal-title{
    font-weight: 700;
}

.fwh-admin-domains-pricing .modal-header .btn-close{
    filter: brightness(0) invert(1);
}

.fwh-admin-domains-pricing .modal-body{
    padding: 2rem;
}

.fwh-admin-domains-pricing .modal-footer{
    padding: 1.5rem;
    border-top: 2px solid #e9ecef;
}

/* Form Enhancements */
.fwh-admin-domains-pricing .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.fwh-admin-domains-pricing .form-control, .fwh-admin-domains-pricing .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-domains-pricing .form-control:focus, .fwh-admin-domains-pricing .form-select:focus{
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Empty State */
.fwh-admin-domains-pricing .empty-state{
    text-align: center;
    padding: 4rem 2rem;
}

.fwh-admin-domains-pricing .empty-state i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.fwh-admin-domains-pricing .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-domains-pricing .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Loading Overlay */
.fwh-admin-domains-pricing .loading-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fwh-admin-domains-pricing .loading-content{
    background: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.fwh-admin-domains-pricing .loading-spinner{
    font-size: 3rem;
    color: #667eea;
    animation: fwh-admin-domains-pricing-spin 1s linear infinite;
}

@keyframes fwh-admin-domains-pricing-spin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fwh-admin-domains-pricing-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-pricing-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-domains-pricing .pricing-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-domains-pricing .pricing-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-domains-pricing .pricing-header-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-domains-pricing .pricing-stats{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-domains-pricing .action-buttons{
        flex-direction: column;
    }
}


/* ---- admin/domains/register ---- */

/* ===== REGISTER DOMAIN ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-domains-register .register-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-register-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-domains-register .register-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
}

.fwh-admin-domains-register .register-header-info h2 i{
    color: #667eea;
    font-size: 2.25rem;
}

.fwh-admin-domains-register .register-header-info p{
    color: #6c757d;
    margin: 0;
    font-size: 1.1rem;
}

/* Configuration Alert */
.fwh-admin-domains-register .config-warning{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-domains-register-slideInDown 0.6s ease;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
}

.fwh-admin-domains-register .config-warning .alert-icon{
    font-size: 2.5rem;
    color: #ffc107;
}

/* Search Card */
.fwh-admin-domains-register .search-card{
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-admin-domains-register-fadeInUp 0.6s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fwh-admin-domains-register .search-card .card-header{
    background: transparent;
    color: white;
    padding: 1.5rem 2rem;
    border: none;
}

.fwh-admin-domains-register .search-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.fwh-admin-domains-register .search-card .card-body{
    padding: 2rem;
    background: white;
}

/* Search Input */
.fwh-admin-domains-register .search-input-group{
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.fwh-admin-domains-register .search-input-group .input-group-text{
    background: #f8f9fa;
    border: none;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-domains-register .search-input-group .input-group-text i{
    color: #667eea;
    font-size: 1.25rem;
}

.fwh-admin-domains-register .search-input-group .form-control{
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.fwh-admin-domains-register .search-input-group .form-control:focus{
    box-shadow: none;
}

.fwh-admin-domains-register .search-input-group .btn{
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fwh-admin-domains-register .search-input-group .btn:hover{
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Availability Result */
.fwh-admin-domains-register #availabilityResult{
    margin-top: 1.5rem;
    animation: fwh-admin-domains-register-fadeIn 0.5s ease;
}

.fwh-admin-domains-register .availability-alert{
    border-radius: 16px;
    border: none;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fwh-admin-domains-register .availability-alert.alert-success{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 5px solid #28a745;
}

.fwh-admin-domains-register .availability-alert.alert-danger{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 5px solid #dc3545;
}

.fwh-admin-domains-register .availability-alert.alert-info{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 5px solid #17a2b8;
}

/* Registration Form Card */
.fwh-admin-domains-register .form-card{
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-domains-register-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-domains-register .form-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #dee2e6;
    padding: 1.5rem 2rem;
}

.fwh-admin-domains-register .form-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.fwh-admin-domains-register .form-card .card-body{
    padding: 2.5rem;
}

/* Form Elements */
.fwh-admin-domains-register .form-label{
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.fwh-admin-domains-register .form-label i{
    color: #667eea;
}

.fwh-admin-domains-register .form-label .required{
    color: #dc3545;
}

.fwh-admin-domains-register .form-control, .fwh-admin-domains-register .form-select{
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-domains-register .form-control:focus, .fwh-admin-domains-register .form-select:focus{
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.fwh-admin-domains-register .form-control-lg{
    padding: 1.125rem 1.5rem;
    font-size: 1.1rem;
}

.fwh-admin-domains-register .form-select-lg{
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
}

/* Options Card */
.fwh-admin-domains-register .options-card{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
}

.fwh-admin-domains-register .options-card h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.fwh-admin-domains-register .options-card h6 i{
    color: #667eea;
}

/* Form Check */
.fwh-admin-domains-register .form-check{
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.fwh-admin-domains-register .form-check:hover{
    border-color: #667eea;
    background: #f8f9fa;
    transform: translateX(5px);
}

.fwh-admin-domains-register .form-check-input{
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.25rem;
    cursor: pointer;
    border: 2px solid #dee2e6;
}

.fwh-admin-domains-register .form-check-input:checked{
    
    border-color: #667eea;
}

.fwh-admin-domains-register .form-check-label{
    cursor: pointer;
    margin-left: 0.75rem;
}

/* Sidebar Cards */
.fwh-admin-domains-register .sidebar-card{
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    animation: fwh-admin-domains-register-fadeInRight 0.6s ease;
}

.fwh-admin-domains-register .sidebar-card .card-header{
    padding: 1.25rem 1.5rem;
    border: none;
    color: white;
}

.fwh-admin-domains-register .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-domains-register .sidebar-card.pricing .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-domains-register .sidebar-card.info .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.fwh-admin-domains-register .sidebar-card .card-body{
    padding: 0;
}

/* Pricing Table */
.fwh-admin-domains-register .pricing-table{
    margin: 0;
}

.fwh-admin-domains-register .pricing-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-domains-register .pricing-table tbody tr:hover{
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.05) 0%, transparent 100%);
    transform: scale(1.02);
}

.fwh-admin-domains-register .pricing-table tbody tr:last-child{
    border-bottom: none;
}

.fwh-admin-domains-register .pricing-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-admin-domains-register .pricing-table .tld-name{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.fwh-admin-domains-register .pricing-table .tld-price{
    font-weight: 700;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

/* Info Items */
.fwh-admin-domains-register .info-item{
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fwh-admin-domains-register .info-item:hover{
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fwh-admin-domains-register .info-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-domains-register .info-item i{
    font-size: 1.75rem;
    margin-top: 0.25rem;
}

.fwh-admin-domains-register .info-item-content strong{
    display: block;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.fwh-admin-domains-register .info-item-content p{
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Submit Button */
.fwh-admin-domains-register .btn-submit{
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.fwh-admin-domains-register .btn-submit:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Enhanced Button */
.fwh-admin-domains-register .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-domains-register .btn-enhanced:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Badge Enhancements */
.fwh-admin-domains-register .addon-badge{
    padding: 0.4rem 0.875rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Quick Tips */
.fwh-admin-domains-register .quick-tips{
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.fwh-admin-domains-register .quick-tips small{
    color: #1565c0;
    font-weight: 600;
}

/* Animations */
@keyframes fwh-admin-domains-register-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-admin-domains-register-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-register-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-register-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fwh-admin-domains-register-slideInDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-domains-register .register-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-domains-register .register-header .btn{
        width: 100%;
    }
    
    .fwh-admin-domains-register .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-admin-domains-register .search-input-group .btn{
        padding: 1rem 1.5rem;
    }
    
    .fwh-admin-domains-register .register-header-info h2{
        font-size: 1.5rem;
    }
}


/* ---- admin/domains/show ---- */

/* ===== DOMAIN DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-domains-show .domain-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-domains-show .domain-title-section{
    flex: 1;
}

.fwh-admin-domains-show .domain-title{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fwh-admin-domains-show .domain-title i{
    color: #0d6efd;
}

.fwh-admin-domains-show .domain-status-badges{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-admin-domains-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Alert Badges */
.fwh-admin-domains-show .expiry-alert{
    background: linear-gradient(135deg, #fff3cd 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-admin-domains-show-pulse 2s infinite;
}

.fwh-admin-domains-show .expiry-alert.danger{
    background: linear-gradient(135deg, #f8d7da 0%, #f8d7da 100%);
    border-color: #dc3545;
}

.fwh-admin-domains-show .expiry-alert i{
    font-size: 2rem;
}

@keyframes fwh-admin-domains-show-pulse{
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Info Card */
.fwh-admin-domains-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    animation: fwh-admin-domains-show-fadeInUp 0.6s ease;
}

.fwh-admin-domains-show .info-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-domains-show .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-domains-show .info-card .card-header h5 i{
    color: #0d6efd;
}

.fwh-admin-domains-show .info-card .card-body{
    padding: 0;
}

/* Info Table */
.fwh-admin-domains-show .info-table{
    margin: 0;
}

.fwh-admin-domains-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-domains-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-admin-domains-show .info-table th{
    font-weight: 600;
    color: #6c757d;
    padding: 1.25rem 1.5rem;
    width: 35%;
    background: #f8f9fa;
    border-right: 2px solid #e9ecef;
}

.fwh-admin-domains-show .info-table td{
    padding: 1.25rem 1.5rem;
    color: #2d3748;
    font-weight: 500;
}

.fwh-admin-domains-show .info-value-highlight{
    font-weight: 700;
    color: #0d6efd;
    font-size: 1.1rem;
}

/* Timeline */
.fwh-admin-domains-show .timeline-item{
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-domains-show .timeline-item:last-child{
    border-bottom: none;
}

.fwh-admin-domains-show .timeline-date{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.fwh-admin-domains-show .timeline-label{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Actions Card */
.fwh-admin-domains-show .actions-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: sticky;
    top: 80px;
    animation: fwh-admin-domains-show-fadeInRight 0.6s ease;
}

.fwh-admin-domains-show .actions-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border: none;
}

.fwh-admin-domains-show .actions-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-domains-show .actions-card .card-body{
    padding: 1.5rem;
}

/* Action Buttons */
.fwh-admin-domains-show .action-btn{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid transparent;
}

.fwh-admin-domains-show .action-btn:not(:disabled):hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.fwh-admin-domains-show .action-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

.fwh-admin-domains-show .action-btn i{
    font-size: 1.1rem;
}

/* Stats Grid */
.fwh-admin-domains-show .domain-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fwh-admin-domains-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-domains-show .stat-item{
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.fwh-admin-domains-show .stat-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.fwh-admin-domains-show .stat-item.primary{
    border-color: #0d6efd;
}

.fwh-admin-domains-show .stat-item.success{
    border-color: #28a745;
}

.fwh-admin-domains-show .stat-item.warning{
    border-color: #ffc107;
}

.fwh-admin-domains-show .stat-item.danger{
    border-color: #dc3545;
}

.fwh-admin-domains-show .stat-label{
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fwh-admin-domains-show .stat-value{
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

/* Customer Link */
.fwh-admin-domains-show .customer-link{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.fwh-admin-domains-show .customer-link:hover{
    color: #0a58ca;
    transform: translateX(4px);
}

/* Nameserver Badge */
.fwh-admin-domains-show .ns-badge{
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: "Courier New", monospace;
    font-weight: 600;
    color: #2d3748;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-domains-show .ns-badge i{
    color: #0d6efd;
}

/* Enhanced Button */
.fwh-admin-domains-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-domains-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Notes Section */
.fwh-admin-domains-show .notes-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-domains-show-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-domains-show .notes-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
}

.fwh-admin-domains-show .notes-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* RC Info Badge */
.fwh-admin-domains-show .rc-badge{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Loading Overlay */
.fwh-admin-domains-show .loading-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fwh-admin-domains-show .loading-content{
    background: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.fwh-admin-domains-show .loading-spinner{
    font-size: 3rem;
    color: #0d6efd;
    animation: fwh-admin-domains-show-spin 1s linear infinite;
}

@keyframes fwh-admin-domains-show-spin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fwh-admin-domains-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-domains-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-domains-show .domain-details-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-domains-show .domain-title{
        font-size: 1.5rem;
    }
    
    .fwh-admin-domains-show .actions-card{
        position: static;
    }
    
    .fwh-admin-domains-show .domain-stats{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-domains-show .info-table th{
        width: 40%;
    }
}


/* ---- admin/invoices/create ---- */

/* ===== CREATE INVOICE ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-invoices-create .invoice-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-invoices-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-invoices-create .invoice-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-invoices-create .invoice-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-invoices-create .invoice-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Form Card */
.fwh-admin-invoices-create .form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-invoices-create-fadeInUp 0.6s ease;
}

.fwh-admin-invoices-create .form-card .card-body{
    padding: 2.5rem;
}

/* Form Elements */
.fwh-admin-invoices-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-invoices-create .form-label i{
    color: #0d6efd;
}

.fwh-admin-invoices-create .form-label.required::after{
    content: "*";
    color: #dc3545;
    margin-left: 0.25rem;
}

.fwh-admin-invoices-create .form-control, .fwh-admin-invoices-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-invoices-create .form-control:focus, .fwh-admin-invoices-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Section Headers */
.fwh-admin-invoices-create .section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.fwh-admin-invoices-create .section-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-invoices-create .section-header h5 i{
    color: #0d6efd;
}

/* Invoice Items */
.fwh-admin-invoices-create .invoice-item{
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: fwh-admin-invoices-create-fadeIn 0.5s ease;
}

.fwh-admin-invoices-create .invoice-item:hover{
    background: #e9ecef;
    transform: scale(1.01);
}

.fwh-admin-invoices-create .invoice-item .form-control{
    background: white;
}

.fwh-admin-invoices-create .item-number{
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Add Item Button */
.fwh-admin-invoices-create .btn-add-item{
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px dashed #0d6efd;
    background: white;
    color: #0d6efd;
    transition: all 0.3s ease;
    width: 100%;
}

.fwh-admin-invoices-create .btn-add-item:hover{
    background: #0d6efd;
    color: white;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Remove Button */
.fwh-admin-invoices-create .btn-remove-item{
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-admin-invoices-create .btn-remove-item:hover{
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Summary Table */
.fwh-admin-invoices-create .summary-card{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
}

.fwh-admin-invoices-create .summary-table{
    margin: 0;
}

.fwh-admin-invoices-create .summary-table tr{
    border: none;
}

.fwh-admin-invoices-create .summary-table th, .fwh-admin-invoices-create .summary-table td{
    padding: 0.75rem 0;
    border: none;
    font-size: 1rem;
}

.fwh-admin-invoices-create .summary-table th{
    color: #6c757d;
    font-weight: 600;
}

.fwh-admin-invoices-create .summary-table td{
    color: #2d3748;
    font-weight: 700;
}

.fwh-admin-invoices-create .summary-table .total-row{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 8px;
}

.fwh-admin-invoices-create .summary-table .total-row th, .fwh-admin-invoices-create .summary-table .total-row td{
    padding: 1rem;
    font-size: 1.25rem;
}

/* Quick Add Sidebar */
.fwh-admin-invoices-create .quick-add-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-admin-invoices-create-fadeInRight 0.6s ease;
}

.fwh-admin-invoices-create .quick-add-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-invoices-create .quick-add-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-invoices-create .quick-add-card .card-body{
    padding: 1.5rem;
}

/* Quick Add Buttons */
.fwh-admin-invoices-create .quick-item-btn{
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    background: white;
    color: #2d3748;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.fwh-admin-invoices-create .quick-item-btn:hover{
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #28a745;
    transform: translateX(4px);
}

.fwh-admin-invoices-create .quick-item-btn .item-name{
    font-weight: 600;
}

.fwh-admin-invoices-create .quick-item-btn .item-price{
    font-weight: 700;
    color: #28a745;
}

/* Submit Button */
.fwh-admin-invoices-create .btn-submit{
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-invoices-create .btn-submit:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Button */
.fwh-admin-invoices-create .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-invoices-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Notes Textarea */
.fwh-admin-invoices-create textarea.form-control{
    resize: vertical;
    min-height: 100px;
}

/* Preview Badge */
.fwh-admin-invoices-create .preview-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Animations */
@keyframes fwh-admin-invoices-create-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-admin-invoices-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-invoices-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-invoices-create-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-invoices-create .invoice-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-invoices-create .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-admin-invoices-create .invoice-item{
        padding: 0.75rem;
    }
    
    .fwh-admin-invoices-create .quick-add-card{
        position: static;
        margin-top: 2rem;
    }
    
    .fwh-admin-invoices-create .summary-card{
        margin-top: 1.5rem;
    }
}


/* ---- admin/invoices/index ---- */

/* ===== INVOICES ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-invoices-index .invoices-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-invoices-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-invoices-index .invoices-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-invoices-index .invoices-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-invoices-index .invoices-header-info p{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-invoices-index .invoices-header-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.fwh-admin-invoices-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-invoices-index-fadeInUp 0.6s ease;
}

.fwh-admin-invoices-index .stat-card{
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-invoices-index .stat-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fwh-admin-invoices-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-invoices-index .stat-card:hover::before{
    width: 8px;
}

.fwh-admin-invoices-index .stat-card.primary::before{
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-invoices-index .stat-card.success::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-invoices-index .stat-card.warning::before{
    background: linear-gradient(180deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-admin-invoices-index .stat-card.danger::before{
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.fwh-admin-invoices-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.fwh-admin-invoices-index .stat-info{
    flex: 1;
}

.fwh-admin-invoices-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.fwh-admin-invoices-index .stat-value{
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fwh-admin-invoices-index .stat-subtext{
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-admin-invoices-index .stat-icon{
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.fwh-admin-invoices-index .stat-card:hover .stat-icon{
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.fwh-admin-invoices-index .stat-card.primary .stat-icon{
    background: #0d6efd;
    color: #0d6efd;
}

.fwh-admin-invoices-index .stat-card.success .stat-icon{
    background: #28a745;
    color: #28a745;
}

.fwh-admin-invoices-index .stat-card.warning .stat-icon{
    background: #ffc107;
    color: #ffc107;
}

.fwh-admin-invoices-index .stat-card.danger .stat-icon{
    background: #dc3545;
    color: #dc3545;
}

/* Filter Buttons */
.fwh-admin-invoices-index .filter-buttons{
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-admin-invoices-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-invoices-index .btn-filter{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-invoices-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-invoices-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-invoices-index .btn-filter .badge{
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Table Card */
.fwh-admin-invoices-index .table-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-admin-invoices-index-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-invoices-index .table-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-invoices-index .table-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-invoices-index .table-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-admin-invoices-index .invoices-table{
    margin: 0;
}

.fwh-admin-invoices-index .invoices-table thead{
    background: #f8f9fa;
}

.fwh-admin-invoices-index .invoices-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-invoices-index .invoices-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-invoices-index .invoices-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.01);
}

.fwh-admin-invoices-index .invoices-table tbody tr.overdue{
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
}

.fwh-admin-invoices-index .invoices-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-invoices-index .invoices-table tbody tr:last-child{
    border-bottom: none;
}

/* Invoice Number */
.fwh-admin-invoices-index .invoice-number{
    font-weight: 700;
    color: #2d3748;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
}

/* Customer Info */
.fwh-admin-invoices-index .customer-info{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fwh-admin-invoices-index .customer-name{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-invoices-index .customer-email{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Amount Display */
.fwh-admin-invoices-index .amount-display{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

/* Status Badges */
.fwh-admin-invoices-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-invoices-index .status-badge i{
    font-size: 0.75rem;
}

/* Due Date Display */
.fwh-admin-invoices-index .due-date{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fwh-admin-invoices-index .due-date-main{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-invoices-index .due-date-status{
    font-size: 0.75rem;
    font-weight: 600;
}

.fwh-admin-invoices-index .due-date-status.overdue{
    color: #dc3545;
}

.fwh-admin-invoices-index .due-date-status.due-soon{
    color: #ffc107;
}

/* Action Buttons */
.fwh-admin-invoices-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.fwh-admin-invoices-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-invoices-index .empty-state{
    text-align: center;
    padding: 4rem 2rem;
}

.fwh-admin-invoices-index .empty-state i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.fwh-admin-invoices-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-invoices-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Button */
.fwh-admin-invoices-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-invoices-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-invoices-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-invoices-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-invoices-index .invoices-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-invoices-index .invoices-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-invoices-index .invoices-header-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-invoices-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-invoices-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-admin-invoices-index .btn-filter{
        flex: 1;
        justify-content: center;
    }
}


/* ---- admin/invoices/show ---- */

/* ===== INVOICE DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-invoices-show .invoice-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-invoices-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-invoices-show .invoice-title-section h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-invoices-show .invoice-title-section h2 i{
    color: #0d6efd;
}

.fwh-admin-invoices-show .invoice-status-badges{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-admin-invoices-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-invoices-show .invoice-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Alert Badges */
.fwh-admin-invoices-show .due-alert{
    background: linear-gradient(135deg, #fff3cd 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fwh-admin-invoices-show-pulse 2s infinite;
}

.fwh-admin-invoices-show .due-alert.danger{
    background: linear-gradient(135deg, #f8d7da 0%, #f8d7da 100%);
    border-color: #dc3545;
}

.fwh-admin-invoices-show .due-alert i{
    font-size: 2rem;
}

@keyframes fwh-admin-invoices-show-pulse{
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Invoice Card */
.fwh-admin-invoices-show .invoice-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-invoices-show-fadeInUp 0.6s ease;
}

.fwh-admin-invoices-show .invoice-card .card-body{
    padding: 3rem;
}

/* Invoice Header Section */
.fwh-admin-invoices-show .invoice-header-section{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #e9ecef;
}

.fwh-admin-invoices-show .company-info{
    flex: 1;
}

.fwh-admin-invoices-show .company-info .logo{
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.fwh-admin-invoices-show .company-info .details{
    color: #6c757d;
    line-height: 1.8;
}

.fwh-admin-invoices-show .invoice-meta{
    text-align: right;
}

.fwh-admin-invoices-show .invoice-number-display{
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-invoices-show .invoice-meta-item{
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.fwh-admin-invoices-show .invoice-meta-label{
    color: #6c757d;
    font-weight: 600;
}

.fwh-admin-invoices-show .invoice-meta-value{
    color: #2d3748;
    font-weight: 600;
}

/* Bill To Section */
.fwh-admin-invoices-show .bill-to-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.fwh-admin-invoices-show .bill-to-card{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
}

.fwh-admin-invoices-show .bill-to-card h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-invoices-show .bill-to-card h6 i{
    color: #0d6efd;
}

.fwh-admin-invoices-show .bill-to-card .info-line{
    margin-bottom: 0.5rem;
    color: #495057;
    line-height: 1.6;
}

.fwh-admin-invoices-show .bill-to-card .info-line strong{
    color: #2d3748;
}

/* Items Table */
.fwh-admin-invoices-show .items-table-wrapper{
    margin-bottom: 2rem;
}

.fwh-admin-invoices-show .items-table{
    margin: 0;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.fwh-admin-invoices-show .items-table thead{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.fwh-admin-invoices-show .items-table thead th{
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
}

.fwh-admin-invoices-show .items-table tbody tr{
    border-bottom: 1px solid #e9ecef;
}

.fwh-admin-invoices-show .items-table tbody tr:last-child{
    border-bottom: none;
}

.fwh-admin-invoices-show .items-table tbody td{
    padding: 1.25rem 1.5rem;
    color: #495057;
}

.fwh-admin-invoices-show .items-table tbody td:first-child{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-invoices-show .items-table tfoot{
    background: #f8f9fa;
}

.fwh-admin-invoices-show .items-table tfoot tr{
    border-top: 2px solid #dee2e6;
}

.fwh-admin-invoices-show .items-table tfoot td{
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #495057;
}

.fwh-admin-invoices-show .items-table tfoot .total-row{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.fwh-admin-invoices-show .items-table tfoot .total-row td{
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Payment Info Alert */
.fwh-admin-invoices-show .payment-alert{
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    animation: fwh-admin-invoices-show-fadeIn 0.6s ease;
}

.fwh-admin-invoices-show .payment-alert.success{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.fwh-admin-invoices-show .payment-alert i{
    font-size: 1.75rem;
}

.fwh-admin-invoices-show .payment-alert-content h6{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.fwh-admin-invoices-show .payment-alert-content p{
    margin: 0;
    color: #495057;
}

/* Notes Section */
.fwh-admin-invoices-show .notes-section{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.fwh-admin-invoices-show .notes-section h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-invoices-show .notes-section h6 i{
    color: #0d6efd;
}

.fwh-admin-invoices-show .notes-section p{
    margin: 0;
    color: #495057;
    line-height: 1.8;
}

/* Enhanced Button */
.fwh-admin-invoices-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-invoices-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Print Styles */
@media print{
    .fwh-admin-invoices-show .invoice-details-header, .fwh-admin-invoices-show .btn, .fwh-admin-invoices-show .due-alert{
        display: none !important;
    }
    
    .fwh-admin-invoices-show .invoice-card{
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
    
    .fwh-admin-invoices-show .invoice-card .card-body{
        padding: 1rem !important;
    }
}

/* Animations */
@keyframes fwh-admin-invoices-show-fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fwh-admin-invoices-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-invoices-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-invoices-show .invoice-details-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-invoices-show .invoice-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-invoices-show .invoice-actions .btn, .fwh-admin-invoices-show .invoice-actions form{
        width: 100%;
    }
    
    .fwh-admin-invoices-show .invoice-actions .btn{
        justify-content: center;
    }
    
    .fwh-admin-invoices-show .invoice-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-admin-invoices-show .invoice-header-section{
        flex-direction: column;
        gap: 2rem;
    }
    
    .fwh-admin-invoices-show .invoice-meta{
        text-align: left;
    }
    
    .fwh-admin-invoices-show .invoice-meta-item{
        justify-content: flex-start;
    }
    
    .fwh-admin-invoices-show .bill-to-section{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ---- admin/logs/activity ---- */

/* ===== ACTIVITY LOGS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-logs-activity .logs-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-logs-activity-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-logs-activity .logs-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-logs-activity .logs-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-logs-activity .logs-header-info p{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-logs-activity .logs-header-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.fwh-admin-logs-activity .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-logs-activity-fadeInUp 0.6s ease;
}

.fwh-admin-logs-activity .stat-card{
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-logs-activity .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-logs-activity .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-logs-activity .stat-card:hover::before{
    width: 8px;
}

.fwh-admin-logs-activity .stat-card.primary::before{
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-logs-activity .stat-card.success::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-logs-activity .stat-card.danger::before{
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.fwh-admin-logs-activity .stat-card.info::before{
    background: linear-gradient(180deg, #17a2b8 0%, #138496 100%);
}

.fwh-admin-logs-activity .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.fwh-admin-logs-activity .stat-info{
    flex: 1;
}

.fwh-admin-logs-activity .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.fwh-admin-logs-activity .stat-value{
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.fwh-admin-logs-activity .stat-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.fwh-admin-logs-activity .stat-card:hover .stat-icon{
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.fwh-admin-logs-activity .stat-card.primary .stat-icon{
    background: #0d6efd;
    color: #0d6efd;
}

.fwh-admin-logs-activity .stat-card.success .stat-icon{
    background: #28a745;
    color: #28a745;
}

.fwh-admin-logs-activity .stat-card.danger .stat-icon{
    background: #dc3545;
    color: #dc3545;
}

.fwh-admin-logs-activity .stat-card.info .stat-icon{
    background: #17a2b8;
    color: #17a2b8;
}

/* Search Card */
.fwh-admin-logs-activity .search-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-logs-activity-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-logs-activity .search-card .card-body{
    padding: 1.5rem;
}

.fwh-admin-logs-activity .search-input-group{
    display: flex;
    gap: 0.75rem;
}

.fwh-admin-logs-activity .search-input-group .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-admin-logs-activity .search-input-group .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Logs Table Card */
.fwh-admin-logs-activity .logs-table-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-admin-logs-activity-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-logs-activity .logs-table-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-logs-activity .logs-table-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-logs-activity .logs-table-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-admin-logs-activity .logs-table{
    margin: 0;
    font-size: 0.9rem;
}

.fwh-admin-logs-activity .logs-table thead{
    background: #f8f9fa;
}

.fwh-admin-logs-activity .logs-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-logs-activity .logs-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-logs-activity .logs-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.005);
}

.fwh-admin-logs-activity .logs-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-logs-activity .logs-table tbody tr:last-child{
    border-bottom: none;
}

/* Time Display */
.fwh-admin-logs-activity .time-display{
    font-family: "Courier New", monospace;
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
}

/* User Link */
.fwh-admin-logs-activity .user-link{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fwh-admin-logs-activity .user-link:hover{
    color: #0a58ca;
    transform: translateX(2px);
}

/* Action Badge */
.fwh-admin-logs-activity .action-badge{
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fwh-admin-logs-activity .action-badge i{
    font-size: 0.7rem;
}

/* IP Address Display */
.fwh-admin-logs-activity .ip-address{
    font-family: "Courier New", monospace;
    font-size: 0.875rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
}

/* Empty State */
.fwh-admin-logs-activity .empty-state{
    text-align: center;
    padding: 4rem 2rem;
}

.fwh-admin-logs-activity .empty-state i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.fwh-admin-logs-activity .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-logs-activity .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
}

/* Info Alert */
.fwh-admin-logs-activity .info-alert{
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #17a2b8;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
}

/* Enhanced Button */
.fwh-admin-logs-activity .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-logs-activity .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Filter Tags */
.fwh-admin-logs-activity .filter-tags{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.fwh-admin-logs-activity .filter-tag{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fwh-admin-logs-activity .filter-tag:hover{
    transform: translateY(-2px);
}

/* Animations */
@keyframes fwh-admin-logs-activity-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-logs-activity-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-logs-activity .logs-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-logs-activity .logs-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-logs-activity .logs-header-actions .btn, .fwh-admin-logs-activity .logs-header-actions form{
        width: 100%;
    }
    
    .fwh-admin-logs-activity .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-logs-activity .search-input-group{
        flex-direction: column;
    }
    
    .fwh-admin-logs-activity .logs-table{
        font-size: 0.8rem;
    }
    
    .fwh-admin-logs-activity .logs-table thead th, .fwh-admin-logs-activity .logs-table tbody td{
        padding: 0.75rem 1rem;
    }
}


/* ---- admin/logs/system ---- */

/* ===== SYSTEM LOGS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-logs-system .logs-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-logs-system-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-logs-system .logs-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-logs-system .logs-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-logs-system .logs-header-info p{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-logs-system .logs-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.fwh-admin-logs-system .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-logs-system-fadeInUp 0.6s ease;
}

.fwh-admin-logs-system .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-logs-system .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-logs-system .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.1;
}

.fwh-admin-logs-system .stat-card.danger{ background: linear-gradient(135deg, #dc3545 0%, #c82333 100%); }
.fwh-admin-logs-system .stat-card.danger::before{ background: white; }
.fwh-admin-logs-system .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.fwh-admin-logs-system .stat-card.warning::before{ background: white; }
.fwh-admin-logs-system .stat-card.info{ background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); }
.fwh-admin-logs-system .stat-card.info::before{ background: white; }
.fwh-admin-logs-system .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-logs-system .stat-card.primary::before{ background: white; }

.fwh-admin-logs-system .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-logs-system .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-logs-system .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-logs-system .stat-value{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-logs-system .stat-icon{
    font-size: 2.5rem;
    opacity: 0.3;
}

/* Filter Card */
.fwh-admin-logs-system .filter-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-admin-logs-system-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-logs-system .filter-card .card-body{
    padding: 1.5rem;
}

/* Logs Card */
.fwh-admin-logs-system .logs-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-logs-system-fadeInUp 0.6s ease 0.3s both;
}

.fwh-admin-logs-system .logs-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-logs-system .logs-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-logs-system .logs-card .card-body{
    padding: 0;
}

/* Log Viewer */
.fwh-admin-logs-system .log-viewer{
    max-height: 600px;
    overflow-y: auto;
    font-family: "Courier New", monospace;
    font-size: 13px;
    background: #1e1e1e;
    padding: 1.5rem;
    margin: 0;
    color: #d4d4d4;
    border-radius: 0 0 16px 16px;
}

.fwh-admin-logs-system .log-line{
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
    word-wrap: break-word;
}

.fwh-admin-logs-system .log-line:last-child{
    border-bottom: none;
}

.fwh-admin-logs-system .log-line:hover{
    background: rgba(255, 255, 255, 0.05);
}

/* Log Types */
.fwh-admin-logs-system .log-error{
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid #ff6b6b;
    padding-left: 0.75rem;
}

.fwh-admin-logs-system .log-warning{
    color: #ffd93d;
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid #ffd93d;
    padding-left: 0.75rem;
}

.fwh-admin-logs-system .log-info{
    color: #6bcfff;
    background: rgba(107, 207, 255, 0.1);
    border-left: 3px solid #6bcfff;
    padding-left: 0.75rem;
}

.fwh-admin-logs-system .log-success{
    color: #51cf66;
    background: rgba(81, 207, 102, 0.1);
    border-left: 3px solid #51cf66;
    padding-left: 0.75rem;
}

/* Log Timestamp */
.fwh-admin-logs-system .log-timestamp{
    color: #888;
    font-weight: 600;
}

/* Form Elements */
.fwh-admin-logs-system .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.fwh-admin-logs-system .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Enhanced Button */
.fwh-admin-logs-system .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-logs-system .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-logs-system .empty-state{
    text-align: center;
    padding: 5rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.fwh-admin-logs-system .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-logs-system-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-logs-system-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-logs-system .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-logs-system .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
}

/* Info Alert */
.fwh-admin-logs-system .info-alert{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 2px solid #17a2b8;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-logs-system .info-alert i{
    font-size: 1.5rem;
    color: #17a2b8;
}

.fwh-admin-logs-system .info-alert-content{
    flex: 1;
    color: #0c5460;
    font-weight: 500;
}

/* File Info Badge */
.fwh-admin-logs-system .file-info-badge{
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Scrollbar Styling */
.fwh-admin-logs-system .log-viewer::-webkit-scrollbar{
    width: 12px;
}

.fwh-admin-logs-system .log-viewer::-webkit-scrollbar-track{
    background: #2d2d2d;
    border-radius: 0 0 16px 0;
}

.fwh-admin-logs-system .log-viewer::-webkit-scrollbar-thumb{
    background: #555;
    border-radius: 6px;
}

.fwh-admin-logs-system .log-viewer::-webkit-scrollbar-thumb:hover{
    background: #777;
}

/* Animations */
@keyframes fwh-admin-logs-system-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-logs-system-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-logs-system .logs-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-logs-system .logs-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-logs-system .logs-actions .btn, .fwh-admin-logs-system .logs-actions form{
        width: 100%;
    }
    
    .fwh-admin-logs-system .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-logs-system .log-viewer{
        font-size: 11px;
        padding: 1rem;
    }
}


/* ---- admin/orders/create ---- */

/* ===== CREATE ORDER ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-orders-create .order-create-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-orders-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-orders-create .order-create-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-orders-create .order-create-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-orders-create .order-create-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Page Layout */
.fwh-admin-orders-create .order-create-wrapper{
    animation: fwh-admin-orders-create-fadeInUp 0.6s ease;
}

.fwh-admin-orders-create .order-create-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: start;
}

/* Cards */
.fwh-admin-orders-create .order-create-card, .fwh-admin-orders-create .order-help-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
}

.fwh-admin-orders-create .order-create-card .card-body, .fwh-admin-orders-create .order-help-card .card-body{
    padding: 2rem;
}

.fwh-admin-orders-create .order-section-title{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-orders-create .order-section-title i{
    color: #0d6efd;
}

.fwh-admin-orders-create .order-section-description{
    color: #6c757d;
    margin: 0 0 1.5rem 0;
}

.fwh-admin-orders-create .order-form-section{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.fwh-admin-orders-create .order-form-section:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

/* Form Elements */
.fwh-admin-orders-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-orders-create .form-label i{
    color: #0d6efd;
    margin-right: 0.35rem;
}

.fwh-admin-orders-create .required-marker{
    color: #dc3545;
    font-weight: 700;
}

.fwh-admin-orders-create .form-control, .fwh-admin-orders-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-orders-create .form-control:focus, .fwh-admin-orders-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-admin-orders-create .form-text{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Alert Styling */
.fwh-admin-orders-create .alert-enhanced{
    border: none;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-orders-create .alert-enhanced ul{
    margin: 0.75rem 0 0 1.25rem;
    padding: 0;
}

.fwh-admin-orders-create .alert-enhanced li{
    margin-bottom: 0.35rem;
}

.fwh-admin-orders-create .alert-enhanced li:last-child{
    margin-bottom: 0;
}

/* Help Card */
.fwh-admin-orders-create .order-help-card{
    position: sticky;
    top: 1rem;
}

.fwh-admin-orders-create .help-icon{
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.fwh-admin-orders-create .help-list{
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
}

.fwh-admin-orders-create .help-list li{
    display: flex;
    gap: 0.75rem;
    align-items: start;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f3f5;
    color: #495057;
}

.fwh-admin-orders-create .help-list li:last-child{
    border-bottom: none;
}

.fwh-admin-orders-create .help-list li i{
    color: #28a745;
    margin-top: 0.2rem;
}

/* Buttons */
.fwh-admin-orders-create .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-orders-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-orders-create .form-actions{
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

/* Summary Box */
.fwh-admin-orders-create .order-summary{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.fwh-admin-orders-create .order-summary-title{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-orders-create .order-summary-row{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fwh-admin-orders-create .order-summary-row:last-child{
    border-bottom: none;
}

.fwh-admin-orders-create .order-summary-label{
    color: #6c757d;
    font-weight: 600;
}

.fwh-admin-orders-create .order-summary-value{
    color: #2d3748;
    font-weight: 700;
    text-align: right;
}

/* Status Preview */
.fwh-admin-orders-create .status-pill-row{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-admin-orders-create .status-pill{
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.fwh-admin-orders-create .status-pill.pending{
    background: #fff3cd;
    color: #997404;
}

.fwh-admin-orders-create .status-pill.active, .fwh-admin-orders-create .status-pill.paid{
    background: #d1e7dd;
    color: #0f5132;
}

.fwh-admin-orders-create .status-pill.unpaid{
    background: #f8d7da;
    color: #842029;
}

/* Animations */
@keyframes fwh-admin-orders-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-orders-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-orders-create-pulseSoft{
    0%, 100% {
        box-shadow: 0 2px 8px rgba(13, 110, 253, 0.25);
    }
    50% {
        box-shadow: 0 4px 16px rgba(13, 110, 253, 0.4);
    }
}

.fwh-admin-orders-create .btn-primary.btn-enhanced{
    animation: fwh-admin-orders-create-pulseSoft 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px){
    .fwh-admin-orders-create .order-create-grid{
        grid-template-columns: 1fr;
    }

    .fwh-admin-orders-create .order-help-card{
        position: static;
    }
}

@media (max-width: 768px){
    .fwh-admin-orders-create .order-create-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-orders-create .order-create-card .card-body, .fwh-admin-orders-create .order-help-card .card-body{
        padding: 1.5rem;
    }

    .fwh-admin-orders-create .form-actions{
        flex-direction: column-reverse;
    }

    .fwh-admin-orders-create .form-actions .btn{
        width: 100%;
    }
}


/* ---- admin/orders/index ---- */

/* ===== ORDERS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-orders-index .orders-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-orders-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-orders-index .orders-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-orders-index .orders-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-orders-index .orders-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Filter Buttons */
.fwh-admin-orders-index .filter-group{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-admin-orders-index .filter-btn{
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
}

.fwh-admin-orders-index .filter-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fwh-admin-orders-index .filter-btn.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fwh-admin-orders-index .filter-btn.active::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: currentColor;
}

/* Stats Grid */
.fwh-admin-orders-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-orders-index-fadeInUp 0.6s ease;
}

.fwh-admin-orders-index .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-orders-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-orders-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fwh-admin-orders-index .stat-card:hover::before{
    transform: scale(1.5);
}

.fwh-admin-orders-index .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-orders-index .stat-card.primary::before{ background: white; }
.fwh-admin-orders-index .stat-card.success{ background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.fwh-admin-orders-index .stat-card.success::before{ background: white; }
.fwh-admin-orders-index .stat-card.info{ background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); }
.fwh-admin-orders-index .stat-card.info::before{ background: white; }
.fwh-admin-orders-index .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.fwh-admin-orders-index .stat-card.warning::before{ background: white; }

.fwh-admin-orders-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-orders-index .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-orders-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-orders-index .stat-value{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-orders-index .stat-icon{
    font-size: 3rem;
    opacity: 0.3;
}

/* Orders Card */
.fwh-admin-orders-index .orders-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-orders-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-orders-index .orders-card .card-body{
    padding: 0;
}

/* Orders Table */
.fwh-admin-orders-index .orders-table{
    margin: 0;
}

.fwh-admin-orders-index .orders-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-orders-index .orders-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-orders-index .orders-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-orders-index .orders-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.002);
}

.fwh-admin-orders-index .orders-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-admin-orders-index .orders-table tbody tr:last-child{
    border-bottom: none;
}

/* Order Number */
.fwh-admin-orders-index .order-number{
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fwh-admin-orders-index .order-number:hover{
    color: #0a58ca;
    text-decoration: underline;
}

/* Customer Cell */
.fwh-admin-orders-index .customer-cell{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-orders-index .customer-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.fwh-admin-orders-index .customer-info{
    flex: 1;
}

.fwh-admin-orders-index .customer-name{
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.fwh-admin-orders-index .customer-email{
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Amount Cell */
.fwh-admin-orders-index .amount-cell{
    font-weight: 700;
    font-size: 1.1rem;
    color: #28a745;
}

/* Status Badge */
.fwh-admin-orders-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Button */
.fwh-admin-orders-index .action-btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-admin-orders-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-orders-index .empty-state{
    text-align: center;
    padding: 5rem 2rem;
}

.fwh-admin-orders-index .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-orders-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-orders-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-orders-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-orders-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
}

/* Enhanced Button */
.fwh-admin-orders-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-orders-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-orders-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-orders-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-orders-index .orders-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-orders-index .filter-group{
        width: 100%;
    }
    
    .fwh-admin-orders-index .filter-btn{
        flex: 1;
        text-align: center;
    }
    
    .fwh-admin-orders-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-orders-index .orders-table{
        font-size: 0.875rem;
    }
    
    .fwh-admin-orders-index .orders-table thead th, .fwh-admin-orders-index .orders-table tbody td{
        padding: 1rem 0.75rem;
    }
    
    .fwh-admin-orders-index .customer-cell{
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ---- admin/orders/show ---- */

/* ===== ORDER DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-orders-show .order-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-orders-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-orders-show .order-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-orders-show .order-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-orders-show .order-header-info .meta-info{
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-orders-show .order-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Status Banner */
.fwh-admin-orders-show .status-banner{
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fwh-admin-orders-show-fadeInUp 0.6s ease;
}

.fwh-admin-orders-show .status-banner.pending{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
}

.fwh-admin-orders-show .status-banner.completed{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.fwh-admin-orders-show .status-banner.cancelled{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
    border: 2px solid #dc3545;
}

.fwh-admin-orders-show .status-banner-content{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-orders-show .status-banner-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.fwh-admin-orders-show .status-banner.pending .status-banner-icon{ background: #ffc107; }
.fwh-admin-orders-show .status-banner.completed .status-banner-icon{ background: #28a745; }
.fwh-admin-orders-show .status-banner.cancelled .status-banner-icon{ background: #dc3545; }

.fwh-admin-orders-show .status-banner-text h5{
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.fwh-admin-orders-show .status-banner-text p{
    margin: 0;
    font-size: 0.875rem;
}

/* Info Card */
.fwh-admin-orders-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-orders-show-fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-orders-show .info-card:nth-child(1){ animation-delay: 0.2s; }
.fwh-admin-orders-show .info-card:nth-child(2){ animation-delay: 0.3s; }
.fwh-admin-orders-show .info-card:nth-child(3){ animation-delay: 0.4s; }

.fwh-admin-orders-show .info-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-orders-show .info-card .card-header h5, .fwh-admin-orders-show .info-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-orders-show .info-card .card-body{
    padding: 2rem;
}

/* Order Info Grid */
.fwh-admin-orders-show .order-info-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-orders-show .info-item{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fwh-admin-orders-show .info-label{
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fwh-admin-orders-show .info-value{
    font-weight: 600;
    color: #2d3748;
    font-size: 1.1rem;
}

/* Items Table */
.fwh-admin-orders-show .items-table{
    margin: 0;
}

.fwh-admin-orders-show .items-table thead{
    background: #f8f9fa;
}

.fwh-admin-orders-show .items-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-orders-show .items-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-orders-show .items-table tbody td{
    padding: 1.25rem;
    vertical-align: middle;
}

.fwh-admin-orders-show .items-table tbody tr:last-child{
    border-bottom: none;
}

.fwh-admin-orders-show .item-description{
    font-weight: 600;
    color: #2d3748;
}

/* Totals Section */
.fwh-admin-orders-show .totals-section{
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.fwh-admin-orders-show .total-row{
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.fwh-admin-orders-show .total-row:last-child{
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid #0d6efd;
}

.fwh-admin-orders-show .total-label{
    font-weight: 600;
    color: #6c757d;
}

.fwh-admin-orders-show .total-value{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-orders-show .total-row:last-child .total-label, .fwh-admin-orders-show .total-row:last-child .total-value{
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d6efd;
}

/* Sidebar Cards */
.fwh-admin-orders-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-admin-orders-show-fadeInRight 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-orders-show .sidebar-card:nth-child(1){ animation-delay: 0.5s; }
.fwh-admin-orders-show .sidebar-card:nth-child(2){ animation-delay: 0.6s; }
.fwh-admin-orders-show .sidebar-card:nth-child(3){ animation-delay: 0.7s; }

.fwh-admin-orders-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-orders-show .sidebar-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-orders-show .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Customer Info */
.fwh-admin-orders-show .customer-info-item{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-orders-show .customer-info-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.fwh-admin-orders-show .customer-info-icon{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
}

.fwh-admin-orders-show .customer-info-content{
    flex: 1;
}

.fwh-admin-orders-show .customer-info-label{
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.fwh-admin-orders-show .customer-info-value{
    font-weight: 600;
    color: #2d3748;
}

/* Timeline */
.fwh-admin-orders-show .timeline{
    position: relative;
    padding-left: 40px;
}

.fwh-admin-orders-show .timeline-item{
    position: relative;
    padding-bottom: 1.5rem;
}

.fwh-admin-orders-show .timeline-item:last-child{
    padding-bottom: 0;
}

.fwh-admin-orders-show .timeline-icon{
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
}

.fwh-admin-orders-show .timeline-icon.primary{ background: #0d6efd; }
.fwh-admin-orders-show .timeline-icon.success{ background: #28a745; }
.fwh-admin-orders-show .timeline-icon.warning{ background: #ffc107; }
.fwh-admin-orders-show .timeline-icon.danger{ background: #dc3545; }

.fwh-admin-orders-show .timeline-item:not(:last-child)::before{
    content: "";
    position: absolute;
    left: -24px;
    top: 32px;
    width: 2px;
    height: calc(100% - 32px);
    background: linear-gradient(180deg, #e9ecef 0%, transparent 100%);
}

.fwh-admin-orders-show .timeline-content{
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

.fwh-admin-orders-show .timeline-title{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.fwh-admin-orders-show .timeline-time{
    font-size: 0.875rem;
    color: #6c757d;
}

/* Status Badge */
.fwh-admin-orders-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modal */
.fwh-admin-orders-show .modal-content{
    border-radius: 16px;
    border: none;
}

.fwh-admin-orders-show .modal-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.fwh-admin-orders-show .modal-header .btn-close{
    filter: invert(1);
}

.fwh-admin-orders-show .modal-body{
    padding: 2rem;
}

.fwh-admin-orders-show .modal-footer{
    padding: 1.5rem 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Enhanced Button */
.fwh-admin-orders-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-orders-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-orders-show .empty-state{
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

/* Animations */
@keyframes fwh-admin-orders-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-orders-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-orders-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-orders-show .order-details-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-orders-show .order-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-orders-show .order-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-orders-show .order-info-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-orders-show .items-table{
        font-size: 0.875rem;
    }
    
    .fwh-admin-orders-show .items-table thead th, .fwh-admin-orders-show .items-table tbody td{
        padding: 0.75rem 0.5rem;
    }
}


/* ---- admin/packages/index ---- */

/* ===== PACKAGES ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-packages-index .packages-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-packages-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-packages-index .packages-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-packages-index .packages-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-packages-index .packages-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.fwh-admin-packages-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-packages-index-fadeInUp 0.6s ease;
}

.fwh-admin-packages-index .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-packages-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-packages-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fwh-admin-packages-index .stat-card:hover::before{
    transform: scale(1.5);
}

.fwh-admin-packages-index .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-packages-index .stat-card.primary::before{ background: white; }

.fwh-admin-packages-index .stat-card.success{ background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.fwh-admin-packages-index .stat-card.success::before{ background: white; }

.fwh-admin-packages-index .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.fwh-admin-packages-index .stat-card.warning::before{ background: white; }

.fwh-admin-packages-index .stat-card.info{ background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%); }
.fwh-admin-packages-index .stat-card.info::before{ background: white; }

.fwh-admin-packages-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-packages-index .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-packages-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-packages-index .stat-value{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-packages-index .stat-icon{
    font-size: 3rem;
    opacity: 0.3;
}

/* Packages Card */
.fwh-admin-packages-index .packages-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-packages-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-packages-index .packages-card .card-body{
    padding: 2rem;
}

/* Search Box */
.fwh-admin-packages-index .search-container{
    margin-bottom: 2rem;
}

.fwh-admin-packages-index .search-form{
    display: flex;
    gap: 1rem;
    max-width: 650px;
}

.fwh-admin-packages-index .search-input{
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-packages-index .search-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.fwh-admin-packages-index .search-btn{
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.fwh-admin-packages-index .search-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

/* Packages Table */
.fwh-admin-packages-index .packages-table{
    margin: 0;
}

.fwh-admin-packages-index .packages-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-packages-index .packages-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-packages-index .packages-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-packages-index .packages-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.002);
}

.fwh-admin-packages-index .packages-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-admin-packages-index .packages-table tbody tr:last-child{
    border-bottom: none;
}

/* Package Cell */
.fwh-admin-packages-index .package-cell{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-packages-index .package-icon{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fwh-admin-packages-index .package-info{
    flex: 1;
}

.fwh-admin-packages-index .package-name{
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.fwh-admin-packages-index .package-description{
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.35rem 0 0 0;
    max-width: 440px;
}

.fwh-admin-packages-index .package-price{
    font-weight: 800;
    color: #2d3748;
    font-size: 1.05rem;
}

.fwh-admin-packages-index .package-cycle{
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

/* Status Badge */
.fwh-admin-packages-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

/* Resource Badges */
.fwh-admin-packages-index .resource-badges{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fwh-admin-packages-index .resource-badge{
    padding: 0.45rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Action Button */
.fwh-admin-packages-index .action-btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-admin-packages-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fwh-admin-packages-index .action-buttons{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Empty State */
.fwh-admin-packages-index .empty-state{
    text-align: center;
    padding: 5rem 2rem;
}

.fwh-admin-packages-index .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-packages-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-packages-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-packages-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-packages-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Button */
.fwh-admin-packages-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-packages-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal */
.fwh-admin-packages-index .modal-content{
    border-radius: 16px;
    border: none;
}

.fwh-admin-packages-index .modal-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.fwh-admin-packages-index .modal-header .btn-close{
    filter: invert(1);
}

.fwh-admin-packages-index .modal-body{
    padding: 2rem;
}

.fwh-admin-packages-index .modal-footer{
    padding: 1.5rem 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Form Elements */
.fwh-admin-packages-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-packages-index .form-control, .fwh-admin-packages-index .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-packages-index .form-control:focus, .fwh-admin-packages-index .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Animations */
@keyframes fwh-admin-packages-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-packages-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-packages-index .packages-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-packages-index .stats-grid{
        grid-template-columns: 1fr;
    }

    .fwh-admin-packages-index .search-form{
        flex-direction: column;
    }

    .fwh-admin-packages-index .search-btn{
        width: 100%;
    }

    .fwh-admin-packages-index .packages-table{
        font-size: 0.875rem;
    }

    .fwh-admin-packages-index .packages-table thead th, .fwh-admin-packages-index .packages-table tbody td{
        padding: 1rem 0.75rem;
    }

    .fwh-admin-packages-index .package-cell{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-packages-index .action-buttons{
        flex-direction: column;
    }

    .fwh-admin-packages-index .action-buttons .btn{
        width: 100%;
    }
}


/* ---- admin/payments/index ---- */

/* ===== PAYMENTS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-payments-index .payments-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-payments-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-payments-index .payments-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-payments-index .payments-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-payments-index .payments-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.fwh-admin-payments-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-payments-index-fadeInUp 0.6s ease;
}

.fwh-admin-payments-index .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-payments-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-payments-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fwh-admin-payments-index .stat-card:hover::before{
    transform: scale(1.5);
}

.fwh-admin-payments-index .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-payments-index .stat-card.primary::before{ background: white; }

.fwh-admin-payments-index .stat-card.success{ background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.fwh-admin-payments-index .stat-card.success::before{ background: white; }

.fwh-admin-payments-index .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%); }
.fwh-admin-payments-index .stat-card.warning::before{ background: white; }

.fwh-admin-payments-index .stat-card.danger{ background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%); }
.fwh-admin-payments-index .stat-card.danger::before{ background: white; }

.fwh-admin-payments-index .stat-card.info{ background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%); }
.fwh-admin-payments-index .stat-card.info::before{ background: white; }

.fwh-admin-payments-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-payments-index .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-payments-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-payments-index .stat-value{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-payments-index .stat-icon{
    font-size: 3rem;
    opacity: 0.3;
}

/* Payments Card */
.fwh-admin-payments-index .payments-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-payments-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-payments-index .payments-card .card-body{
    padding: 2rem;
}

/* Search Box */
.fwh-admin-payments-index .search-container{
    margin-bottom: 2rem;
}

.fwh-admin-payments-index .search-form{
    display: flex;
    gap: 1rem;
    max-width: 720px;
}

.fwh-admin-payments-index .search-input{
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-payments-index .search-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.fwh-admin-payments-index .search-btn{
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.fwh-admin-payments-index .search-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

/* Payments Table */
.fwh-admin-payments-index .payments-table{
    margin: 0;
}

.fwh-admin-payments-index .payments-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-payments-index .payments-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-payments-index .payments-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-payments-index .payments-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.002);
}

.fwh-admin-payments-index .payments-table tbody td{
    padding: 1.25rem 1.5rem;
    vertical-align: middle;
}

.fwh-admin-payments-index .payments-table tbody tr:last-child{
    border-bottom: none;
}

/* Payment Cell */
.fwh-admin-payments-index .payment-cell{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-payments-index .payment-icon{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fwh-admin-payments-index .payment-info{
    flex: 1;
}

.fwh-admin-payments-index .payment-reference{
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.fwh-admin-payments-index .payment-meta{
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.35rem 0 0 0;
}

.fwh-admin-payments-index .customer-name{
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.fwh-admin-payments-index .customer-email{
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.35rem 0 0 0;
}

.fwh-admin-payments-index .payment-amount{
    font-weight: 800;
    color: #2d3748;
    font-size: 1.05rem;
}

.fwh-admin-payments-index .payment-method{
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.825rem;
    background: #f1f5f9;
    color: #475569;
}

.fwh-admin-payments-index .transaction-code{
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    display: inline-block;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Status Badge */
.fwh-admin-payments-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

/* Action Button */
.fwh-admin-payments-index .action-btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-admin-payments-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fwh-admin-payments-index .action-buttons{
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Empty State */
.fwh-admin-payments-index .empty-state{
    text-align: center;
    padding: 5rem 2rem;
}

.fwh-admin-payments-index .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-payments-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-payments-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-payments-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-payments-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Button */
.fwh-admin-payments-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-payments-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modal */
.fwh-admin-payments-index .modal-content{
    border-radius: 16px;
    border: none;
}

.fwh-admin-payments-index .modal-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
}

.fwh-admin-payments-index .modal-header .btn-close{
    filter: invert(1);
}

.fwh-admin-payments-index .modal-body{
    padding: 2rem;
}

.fwh-admin-payments-index .modal-footer{
    padding: 1.5rem 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Form Elements */
.fwh-admin-payments-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-payments-index .form-control, .fwh-admin-payments-index .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-payments-index .form-control:focus, .fwh-admin-payments-index .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Animations */
@keyframes fwh-admin-payments-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-payments-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-payments-index .payments-header{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-payments-index .stats-grid{
        grid-template-columns: 1fr;
    }

    .fwh-admin-payments-index .search-form{
        flex-direction: column;
    }

    .fwh-admin-payments-index .search-btn{
        width: 100%;
    }

    .fwh-admin-payments-index .payments-table{
        font-size: 0.875rem;
    }

    .fwh-admin-payments-index .payments-table thead th, .fwh-admin-payments-index .payments-table tbody td{
        padding: 1rem 0.75rem;
    }

    .fwh-admin-payments-index .payment-cell{
        flex-direction: column;
        align-items: flex-start;
    }

    .fwh-admin-payments-index .action-buttons{
        flex-direction: column;
    }

    .fwh-admin-payments-index .action-buttons .btn{
        width: 100%;
    }
}


/* ---- admin/servers/create ---- */

/* ===== ADD SERVER ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-servers-create .server-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-servers-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-servers-create .server-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-create .server-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-servers-create .server-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Form Card */
.fwh-admin-servers-create .form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-servers-create-fadeInUp 0.6s ease;
}

.fwh-admin-servers-create .form-card .card-body{
    padding: 2.5rem;
}

/* Form Sections */
.fwh-admin-servers-create .form-section{
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.fwh-admin-servers-create .form-section:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fwh-admin-servers-create .form-section-header{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-servers-create .form-section-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-servers-create .form-section-header i{
    color: #0d6efd;
    font-size: 1.25rem;
}

/* Form Elements */
.fwh-admin-servers-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-create .form-label i{
    color: #0d6efd;
}

.fwh-admin-servers-create .form-label.required::after{
    content: "*";
    color: #dc3545;
    margin-left: 0.25rem;
}

.fwh-admin-servers-create .form-control, .fwh-admin-servers-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-admin-servers-create .form-control:focus, .fwh-admin-servers-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-admin-servers-create .form-text{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.fwh-admin-servers-create .form-text.success{
    color: #28a745;
}

.fwh-admin-servers-create .form-text.success i{
    color: #28a745;
}

/* Info Card */
.fwh-admin-servers-create .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-admin-servers-create-fadeInRight 0.6s ease;
    margin-bottom: 1.5rem;
}

.fwh-admin-servers-create .info-card .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-create .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-create .info-card .card-body{
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

.fwh-admin-servers-create .info-item{
    margin-bottom: 1rem;
}

.fwh-admin-servers-create .info-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-servers-create .info-item strong{
    display: block;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.fwh-admin-servers-create .info-item p{
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Alert Cards */
.fwh-admin-servers-create .alert-card{
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fwh-admin-servers-create-fadeInRight 0.6s ease;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.fwh-admin-servers-create .alert-card h6{
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-create .alert-card p{
    margin: 0;
    font-size: 0.875rem;
}

.fwh-admin-servers-create .alert-card pre{
    background: rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.fwh-admin-servers-create .alert-card.success{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.fwh-admin-servers-create .alert-card.warning{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid #ffc107;
}

/* Tip Card */
.fwh-admin-servers-create .tip-card{
    border: 2px solid #17a2b8;
    border-radius: 16px;
    overflow: hidden;
    animation: fwh-admin-servers-create-fadeInRight 0.6s ease;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.fwh-admin-servers-create .tip-card .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1rem 1.25rem;
}

.fwh-admin-servers-create .tip-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-create .tip-card .card-body{
    padding: 1.25rem;
}

/* Test Result */
.fwh-admin-servers-create .test-result{
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    animation: fwh-admin-servers-create-slideDown 0.3s ease;
}

@keyframes fwh-admin-servers-create-slideDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fwh-admin-servers-create .test-result strong{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Enhanced Buttons */
.fwh-admin-servers-create .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-servers-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-servers-create .btn-test{
    position: relative;
    overflow: hidden;
}

.fwh-admin-servers-create .btn-test.loading::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: fwh-admin-servers-create-shimmer 1.5s infinite;
}

@keyframes fwh-admin-servers-create-shimmer{
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Form Actions */
.fwh-admin-servers-create .form-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.fwh-admin-servers-create .form-actions-right{
    display: flex;
    gap: 0.75rem;
}

/* Animations */
@keyframes fwh-admin-servers-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-create-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-servers-create .server-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-servers-create .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-admin-servers-create .form-actions{
        flex-direction: column;
        align-items: stretch;
    }
    
    .fwh-admin-servers-create .form-actions-right{
        flex-direction: column;
        width: 100%;
    }
    
    .fwh-admin-servers-create .form-actions-right .btn{
        width: 100%;
    }
    
    .fwh-admin-servers-create .info-card{
        position: static;
        margin-top: 2rem;
    }
}


/* ---- admin/servers/edit ---- */

/* ===== EDIT SERVER ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-servers-edit .server-edit-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-servers-edit-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-servers-edit .server-edit-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-edit .server-edit-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-servers-edit .server-edit-header-info .meta-info{
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Status Banner */
.fwh-admin-servers-edit .status-banner{
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fwh-admin-servers-edit-fadeInUp 0.6s ease;
}

.fwh-admin-servers-edit .status-banner.active{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.fwh-admin-servers-edit .status-banner.inactive{
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    border: 2px solid #6c757d;
}

.fwh-admin-servers-edit .status-banner.maintenance{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
}

.fwh-admin-servers-edit .status-banner-content{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-servers-edit .status-banner-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.fwh-admin-servers-edit .status-banner.active .status-banner-icon{ background: #28a745; }
.fwh-admin-servers-edit .status-banner.inactive .status-banner-icon{ background: #6c757d; }
.fwh-admin-servers-edit .status-banner.maintenance .status-banner-icon{ background: #ffc107; }

.fwh-admin-servers-edit .status-banner-text h5{
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.fwh-admin-servers-edit .status-banner-text p{
    margin: 0;
    font-size: 0.875rem;
}

/* Form Card */
.fwh-admin-servers-edit .form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-servers-edit-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-servers-edit .form-card .card-body{
    padding: 2.5rem;
}

/* Form Sections */
.fwh-admin-servers-edit .form-section{
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.fwh-admin-servers-edit .form-section:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fwh-admin-servers-edit .form-section-header{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-servers-edit .form-section-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-servers-edit .form-section-header i{
    color: #0d6efd;
    font-size: 1.25rem;
}

/* Form Elements */
.fwh-admin-servers-edit .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-edit .form-label i{
    color: #0d6efd;
}

.fwh-admin-servers-edit .form-label.required::after{
    content: "*";
    color: #dc3545;
    margin-left: 0.25rem;
}

.fwh-admin-servers-edit .form-control, .fwh-admin-servers-edit .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-admin-servers-edit .form-control:focus, .fwh-admin-servers-edit .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-admin-servers-edit .form-text{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Info Card */
.fwh-admin-servers-edit .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-admin-servers-edit-fadeInRight 0.6s ease 0.4s both;
}

.fwh-admin-servers-edit .info-card .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-edit .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-edit .info-card .card-body{
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

.fwh-admin-servers-edit .info-item{
    margin-bottom: 1rem;
}

.fwh-admin-servers-edit .info-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-servers-edit .info-item strong{
    display: block;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.fwh-admin-servers-edit .info-item p{
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Stats Card */
.fwh-admin-servers-edit .stats-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-admin-servers-edit-fadeInRight 0.6s ease 0.5s both;
}

.fwh-admin-servers-edit .stats-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-edit .stats-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-edit .stats-card .card-body{
    padding: 1.5rem;
}

.fwh-admin-servers-edit .stat-item{
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.fwh-admin-servers-edit .stat-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-servers-edit .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.fwh-admin-servers-edit .stat-value{
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

/* Danger Zone */
.fwh-admin-servers-edit .danger-card{
    border: 2px solid #dc3545;
    border-radius: 16px;
    overflow: hidden;
    animation: fwh-admin-servers-edit-fadeInRight 0.6s ease 0.6s both;
}

.fwh-admin-servers-edit .danger-card .card-header{
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1rem 1.25rem;
}

.fwh-admin-servers-edit .danger-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-edit .danger-card .card-body{
    padding: 1.5rem;
}

/* Enhanced Buttons */
.fwh-admin-servers-edit .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-servers-edit .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form Actions */
.fwh-admin-servers-edit .form-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

/* Animations */
@keyframes fwh-admin-servers-edit-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-edit-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-edit-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-servers-edit .server-edit-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-servers-edit .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-admin-servers-edit .form-actions{
        flex-direction: column;
        align-items: stretch;
    }
    
    .fwh-admin-servers-edit .form-actions .btn{
        width: 100%;
    }
}


/* ---- admin/servers/index ---- */

/* ===== SERVERS LIST ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-servers-index .servers-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-servers-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-servers-index .servers-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-index .servers-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-servers-index .servers-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.fwh-admin-servers-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-servers-index-fadeInUp 0.6s ease;
}

.fwh-admin-servers-index .stat-card{
    border: none;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-servers-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-servers-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.fwh-admin-servers-index .stat-card:hover::before{
    transform: scale(1.5);
}

.fwh-admin-servers-index .stat-card.primary{ background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.fwh-admin-servers-index .stat-card.primary::before{ background: white; }
.fwh-admin-servers-index .stat-card.success{ background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.fwh-admin-servers-index .stat-card.success::before{ background: white; }
.fwh-admin-servers-index .stat-card.info{ background: linear-gradient(135deg, #17a2b8 0%, #138496 100%); }
.fwh-admin-servers-index .stat-card.info::before{ background: white; }
.fwh-admin-servers-index .stat-card.warning{ background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%); }
.fwh-admin-servers-index .stat-card.warning::before{ background: white; }

.fwh-admin-servers-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
}

.fwh-admin-servers-index .stat-info{
    flex: 1;
    color: white;
}

.fwh-admin-servers-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.fwh-admin-servers-index .stat-value{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.fwh-admin-servers-index .stat-icon{
    font-size: 3rem;
    opacity: 0.3;
}

/* Server Cards */
.fwh-admin-servers-index .server-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    animation: fwh-admin-servers-index-fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-servers-index .server-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.fwh-admin-servers-index .server-card .card-header{
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
    border: none;
}

.fwh-admin-servers-index .server-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-index .server-card .card-body{
    padding: 1.5rem;
}

.fwh-admin-servers-index .server-card .card-footer{
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 16px 16px;
    border: none;
}

/* Server Detail Item */
.fwh-admin-servers-index .server-detail{
    margin-bottom: 1.25rem;
}

.fwh-admin-servers-index .server-detail:last-child{
    margin-bottom: 0;
}

.fwh-admin-servers-index .server-detail-label{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
}

.fwh-admin-servers-index .server-detail-label i{
    width: 18px;
    text-align: center;
}

.fwh-admin-servers-index .server-detail-value{
    padding-left: 26px;
}

.fwh-admin-servers-index .server-detail-value code{
    background: #f8f9fa;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Usage Bar */
.fwh-admin-servers-index .usage-section{
    margin-bottom: 1.25rem;
}

.fwh-admin-servers-index .usage-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.fwh-admin-servers-index .usage-label{
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-index .usage-value{
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-servers-index .custom-progress{
    height: 10px;
    border-radius: 10px;
    background: #e9ecef;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fwh-admin-servers-index .custom-progress-bar{
    height: 100%;
    transition: width 0.6s ease;
    border-radius: 10px;
}

.fwh-admin-servers-index .usage-percent{
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.35rem;
}

/* Connection Status */
.fwh-admin-servers-index .connection-status{
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    animation: fwh-admin-servers-index-slideDown 0.3s ease;
}

@keyframes fwh-admin-servers-index-slideDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notes Alert */
.fwh-admin-servers-index .notes-alert{
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0;
}

.fwh-admin-servers-index .notes-alert small{
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: #6c757d;
}

.fwh-admin-servers-index .notes-alert i{
    margin-top: 0.15rem;
}

/* Action Buttons */
.fwh-admin-servers-index .action-btn-group{
    display: flex;
    gap: 0.5rem;
}

.fwh-admin-servers-index .action-btn{
    padding: 0.5rem 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.fwh-admin-servers-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-servers-index .empty-state{
    text-align: center;
    padding: 5rem 2rem;
}

.fwh-admin-servers-index .empty-state i{
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-servers-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-servers-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-servers-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fwh-admin-servers-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Notification */
.fwh-admin-servers-index .notification-container{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 350px;
    max-width: 400px;
}

.fwh-admin-servers-index .notification{
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: fwh-admin-servers-index-slideInRight 0.3s ease;
}

@keyframes fwh-admin-servers-index-slideInRight{
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse Animations */
.fwh-admin-servers-index-pulse-success{
    animation: fwh-admin-servers-index-pulse-success 0.5s;
}

.fwh-admin-servers-index-pulse-error{
    animation: fwh-admin-servers-index-pulse-error 0.5s;
}

@keyframes fwh-admin-servers-index-pulse-success{
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    50% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0.4); }
}

@keyframes fwh-admin-servers-index-pulse-error{
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
    50% { box-shadow: 0 0 0 15px rgba(220, 53, 69, 0.4); }
}

/* Enhanced Button */
.fwh-admin-servers-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-servers-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-servers-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-servers-index .servers-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-servers-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-servers-index .notification-container{
        left: 20px;
        right: 20px;
        min-width: auto;
    }
}


/* ---- admin/servers/show ---- */

/* ===== SERVER DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-servers-show .server-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-servers-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-servers-show .server-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-show .server-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-servers-show .server-header-info .meta-info{
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-show .server-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Status Banner */
.fwh-admin-servers-show .status-banner{
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fwh-admin-servers-show-fadeInUp 0.6s ease;
}

.fwh-admin-servers-show .status-banner.active{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.fwh-admin-servers-show .status-banner.inactive{
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    border: 2px solid #6c757d;
}

.fwh-admin-servers-show .status-banner.maintenance{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
}

.fwh-admin-servers-show .status-banner-content{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-servers-show .status-banner-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.fwh-admin-servers-show .status-banner.active .status-banner-icon{ background: #28a745; }
.fwh-admin-servers-show .status-banner.inactive .status-banner-icon{ background: #6c757d; }
.fwh-admin-servers-show .status-banner.maintenance .status-banner-icon{ background: #ffc107; }

.fwh-admin-servers-show .status-banner-text h5{
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.fwh-admin-servers-show .status-banner-text p{
    margin: 0;
    font-size: 0.875rem;
}

/* Info Card */
.fwh-admin-servers-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-servers-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-servers-show .info-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-show .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-show .info-card .card-body{
    padding: 2rem;
}

/* Info Table */
.fwh-admin-servers-show .info-table{
    margin: 0;
}

.fwh-admin-servers-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-servers-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-admin-servers-show .info-table th{
    font-weight: 600;
    color: #6c757d;
    padding: 1rem 0.75rem;
    width: 35%;
}

.fwh-admin-servers-show .info-table td{
    padding: 1rem 0.75rem;
    color: #2d3748;
    font-weight: 500;
}

.fwh-admin-servers-show .info-table code{
    background: #f8f9fa;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    color: #0d6efd;
    font-weight: 600;
}

/* Accounts Card */
.fwh-admin-servers-show .accounts-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-servers-show-fadeInUp 0.6s ease 0.3s both;
}

.fwh-admin-servers-show .accounts-card .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-show .accounts-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-show .accounts-card .card-body{
    padding: 0;
}

/* Accounts Table */
.fwh-admin-servers-show .accounts-table{
    margin: 0;
}

.fwh-admin-servers-show .accounts-table thead{
    background: #f8f9fa;
}

.fwh-admin-servers-show .accounts-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-servers-show .accounts-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-servers-show .accounts-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.002);
}

.fwh-admin-servers-show .accounts-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-servers-show .accounts-table tbody tr:last-child{
    border-bottom: none;
}

/* Empty State */
.fwh-admin-servers-show .empty-state{
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.fwh-admin-servers-show .empty-state i{
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Sidebar Cards */
.fwh-admin-servers-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-servers-show-fadeInRight 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-servers-show .sidebar-card:nth-child(1){ animation-delay: 0.4s; }
.fwh-admin-servers-show .sidebar-card:nth-child(2){ animation-delay: 0.5s; }

.fwh-admin-servers-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-show .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-show .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Stats Section */
.fwh-admin-servers-show .stats-section{
    margin-bottom: 1.5rem;
}

.fwh-admin-servers-show .stats-section h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-servers-show .custom-progress{
    height: 25px;
    border-radius: 10px;
    background: #e9ecef;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.fwh-admin-servers-show .custom-progress-bar{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: width 0.6s ease;
    border-radius: 10px;
}

.fwh-admin-servers-show .stat-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.fwh-admin-servers-show .stat-item{
    text-align: center;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.fwh-admin-servers-show .stat-value{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fwh-admin-servers-show .stat-value.success{ color: #28a745; }
.fwh-admin-servers-show .stat-value.warning{ color: #ffc107; }
.fwh-admin-servers-show .stat-value.info{ color: #17a2b8; }

.fwh-admin-servers-show .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.fwh-admin-servers-show .action-btn{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid transparent;
}

.fwh-admin-servers-show .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Status Badge */
.fwh-admin-servers-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Button */
.fwh-admin-servers-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-servers-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Notification */
.fwh-admin-servers-show .notification{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    animation: fwh-admin-servers-show-slideInRight 0.3s ease;
}

@keyframes fwh-admin-servers-show-slideInRight{
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animations */
@keyframes fwh-admin-servers-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-servers-show .server-details-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-servers-show .server-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-servers-show .server-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-servers-show .status-banner{
        flex-direction: column;
        gap: 1rem;
    }
    
    .fwh-admin-servers-show .stat-grid{
        grid-template-columns: 1fr;
    }
}


/* ---- admin/servers/sync ---- */

/* ===== SYNC ACCOUNTS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-servers-sync .sync-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-servers-sync-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-servers-sync .sync-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-sync .sync-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-servers-sync .sync-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Step Cards */
.fwh-admin-servers-sync .step-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-servers-sync-fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-servers-sync .step-card:nth-child(1){ animation-delay: 0.2s; }
.fwh-admin-servers-sync .step-card:nth-child(2){ animation-delay: 0.3s; }

.fwh-admin-servers-sync .step-card .card-header{
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-sync .step-card .card-header.primary{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.fwh-admin-servers-sync .step-card .card-header.success{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.fwh-admin-servers-sync .step-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-servers-sync .step-card .card-body{
    padding: 2rem;
}

/* Fetch Button */
.fwh-admin-servers-sync .fetch-btn{
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.fwh-admin-servers-sync .fetch-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

/* Status Alert */
.fwh-admin-servers-sync .status-alert{
    border-radius: 12px;
    padding: 1.25rem;
    animation: fwh-admin-servers-sync-slideDown 0.3s ease;
}

@keyframes fwh-admin-servers-sync-slideDown{
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selection Controls */
.fwh-admin-servers-sync .selection-controls{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.fwh-admin-servers-sync .control-group{
    display: flex;
    gap: 0.5rem;
}

.fwh-admin-servers-sync .control-btn{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fwh-admin-servers-sync .control-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fwh-admin-servers-sync .search-input{
    width: 280px;
    padding: 0.6rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fwh-admin-servers-sync .search-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Accounts Table */
.fwh-admin-servers-sync .accounts-table-container{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fwh-admin-servers-sync .accounts-table{
    margin: 0;
}

.fwh-admin-servers-sync .accounts-table thead{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fwh-admin-servers-sync .accounts-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.fwh-admin-servers-sync .account-row{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-servers-sync .account-row:hover{
    background: #f8f9fa;
}

.fwh-admin-servers-sync .account-row.table-secondary{
    background: #f8f9fa;
    opacity: 0.7;
}

.fwh-admin-servers-sync .account-row.filtered{
    display: none;
}

.fwh-admin-servers-sync .account-row td{
    padding: 1rem;
    vertical-align: middle;
}

/* Domain Cell */
.fwh-admin-servers-sync .domain-cell{
    font-weight: 600;
    color: #2d3748;
}

/* Username Cell */
.fwh-admin-servers-sync .username-code{
    background: #f8f9fa;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Package Badge */
.fwh-admin-servers-sync .package-badge{
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Usage Display */
.fwh-admin-servers-sync .usage-display{
    min-width: 120px;
}

.fwh-admin-servers-sync .usage-text{
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.fwh-admin-servers-sync .disk-usage-bar{
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin: 0.25rem 0;
}

.fwh-admin-servers-sync .disk-usage-fill{
    height: 100%;
    background: linear-gradient(90deg, #28a745, #ffc107, #dc3545);
    transition: width 0.4s ease;
    border-radius: 3px;
}

.fwh-admin-servers-sync .usage-percent{
    font-size: 0.75rem;
    color: #6c757d;
}

/* Status Badge */
.fwh-admin-servers-sync .status-badge{
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-sync .badge-new{
    background: #28a745;
    color: white;
}

.fwh-admin-servers-sync .badge-existing{
    background: #6c757d;
    color: white;
}

.fwh-admin-servers-sync .badge-suspended{
    background: #ffc107;
    color: #000;
}

/* Customer Cell */
.fwh-admin-servers-sync .customer-assigned{
    font-size: 0.875rem;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Summary Card */
.fwh-admin-servers-sync .summary-card{
    border-radius: 12px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fwh-admin-servers-sync .summary-info h5{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-servers-sync .summary-counts{
    font-size: 0.875rem;
    color: #6c757d;
}

.fwh-admin-servers-sync .summary-counts span{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-servers-sync .submit-btn{
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.fwh-admin-servers-sync .submit-btn:hover:not(:disabled){
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.fwh-admin-servers-sync .submit-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

/* Customer Modal */
.fwh-admin-servers-sync .modal-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-servers-sync .modal-header .btn-close{
    filter: invert(1);
}

.fwh-admin-servers-sync .modal-body{
    padding: 2rem;
}

.fwh-admin-servers-sync .modal-footer{
    padding: 1.5rem 2rem;
}

/* Enhanced Form Elements */
.fwh-admin-servers-sync .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.fwh-admin-servers-sync .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-servers-sync .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Checkbox */
.fwh-admin-servers-sync .form-check-input{
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid #0d6efd;
}

.fwh-admin-servers-sync .form-check-input:checked{
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.fwh-admin-servers-sync .form-check-input:disabled{
    cursor: not-allowed;
    opacity: 0.5;
}

/* Enhanced Button */
.fwh-admin-servers-sync .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-servers-sync .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-servers-sync-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-servers-sync-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-servers-sync .sync-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-servers-sync .selection-controls{
        flex-direction: column;
        align-items: stretch;
    }
    
    .fwh-admin-servers-sync .control-group{
        flex-wrap: wrap;
    }
    
    .fwh-admin-servers-sync .search-input{
        width: 100%;
    }
    
    .fwh-admin-servers-sync .summary-card{
        flex-direction: column;
        align-items: stretch;
    }
    
    .fwh-admin-servers-sync .submit-btn{
        width: 100%;
    }
    
    .fwh-admin-servers-sync .accounts-table{
        font-size: 0.875rem;
    }
    
    .fwh-admin-servers-sync .accounts-table th, .fwh-admin-servers-sync .accounts-table td{
        padding: 0.75rem 0.5rem;
    }
}


/* ---- admin/services/create ---- */

/* ===== CREATE SERVICE ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-services-create .service-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-services-create-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-services-create .service-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-create .service-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-services-create .service-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Form Card */
.fwh-admin-services-create .form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-services-create-fadeInUp 0.6s ease;
}

.fwh-admin-services-create .form-card .card-body{
    padding: 2.5rem;
}

/* Form Sections */
.fwh-admin-services-create .form-section{
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.fwh-admin-services-create .form-section:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fwh-admin-services-create .form-section-header{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-services-create .form-section-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-services-create .form-section-header i{
    color: #0d6efd;
    font-size: 1.25rem;
}

/* Form Elements */
.fwh-admin-services-create .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-create .form-label i{
    color: #0d6efd;
}

.fwh-admin-services-create .form-label.required::after{
    content: "*";
    color: #dc3545;
    margin-left: 0.25rem;
}

.fwh-admin-services-create .form-control, .fwh-admin-services-create .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-admin-services-create .form-control:focus, .fwh-admin-services-create .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-admin-services-create .input-group .input-group-text{
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    font-weight: 600;
    color: #6c757d;
}

.fwh-admin-services-create .input-group .form-control{
    border-left: none;
}

/* Limit Card */
.fwh-admin-services-create .limit-card{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.fwh-admin-services-create .limit-card-header{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.fwh-admin-services-create .limit-card-header i{
    color: #0d6efd;
    font-size: 1.1rem;
}

.fwh-admin-services-create .limit-card-header strong{
    color: #2d3748;
}

/* Info Card */
.fwh-admin-services-create .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    animation: fwh-admin-services-create-fadeInRight 0.6s ease;
}

.fwh-admin-services-create .info-card .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-services-create .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-create .info-card .card-body{
    padding: 1.5rem;
}

.fwh-admin-services-create .info-item{
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.fwh-admin-services-create .info-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-services-create .info-item i{
    color: #17a2b8;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.fwh-admin-services-create .info-item-text{
    flex: 1;
}

.fwh-admin-services-create .info-item-text strong{
    display: block;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.fwh-admin-services-create .info-item-text small{
    color: #6c757d;
    line-height: 1.5;
}

/* Package Presets */
.fwh-admin-services-create .package-presets{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.fwh-admin-services-create .preset-card{
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.fwh-admin-services-create .preset-card:hover{
    border-color: #0d6efd;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.fwh-admin-services-create .preset-card.active{
    border-color: #0d6efd;
    background: linear-gradient(135deg, #d4e9ff 0%, #b8daff 100%);
}

.fwh-admin-services-create .preset-card h6{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-services-create .preset-card .price{
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.fwh-admin-services-create .preset-card .features{
    font-size: 0.875rem;
    color: #6c757d;
}

/* Enhanced Button */
.fwh-admin-services-create .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-services-create .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-services-create-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-services-create-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-services-create-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-services-create .service-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-services-create .form-card .card-body{
        padding: 1.5rem;
    }
    
    .fwh-admin-services-create .package-presets{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-services-create .info-card{
        position: static;
        margin-top: 2rem;
    }
}


/* ---- admin/services/index ---- */

/* ===== SERVICES ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-services-index .services-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-services-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-services-index .services-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-index .services-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-services-index .services-header-info p{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-services-index .services-header-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Stats Grid */
.fwh-admin-services-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-services-index-fadeInUp 0.6s ease;
}

.fwh-admin-services-index .stat-card{
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-services-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-services-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-services-index .stat-card:hover::before{
    width: 8px;
}

.fwh-admin-services-index .stat-card.primary::before{
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-services-index .stat-card.success::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-services-index .stat-card.warning::before{
    background: linear-gradient(180deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-admin-services-index .stat-card.secondary::before{
    background: linear-gradient(180deg, #6c757d 0%, #495057 100%);
}

.fwh-admin-services-index .stat-card.info::before{
    background: linear-gradient(180deg, #17a2b8 0%, #138496 100%);
}

.fwh-admin-services-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.fwh-admin-services-index .stat-info{
    flex: 1;
}

.fwh-admin-services-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.fwh-admin-services-index .stat-value{
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.fwh-admin-services-index .stat-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.fwh-admin-services-index .stat-card:hover .stat-icon{
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.fwh-admin-services-index .stat-card.primary .stat-icon{ background: #0d6efd; color: #0d6efd; }
.fwh-admin-services-index .stat-card.success .stat-icon{ background: #28a745; color: #28a745; }
.fwh-admin-services-index .stat-card.warning .stat-icon{ background: #ffc107; color: #ffc107; }
.fwh-admin-services-index .stat-card.secondary .stat-icon{ background: #6c757d; color: #6c757d; }
.fwh-admin-services-index .stat-card.info .stat-icon{ background: #17a2b8; color: #17a2b8; }

/* Filter Buttons */
.fwh-admin-services-index .filter-buttons{
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-admin-services-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-services-index .btn-filter{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-services-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-services-index .btn-filter .badge{
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Table Card */
.fwh-admin-services-index .services-table-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-admin-services-index-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-services-index .services-table-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-services-index .services-table-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-index .services-table-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-admin-services-index .services-table{
    margin: 0;
}

.fwh-admin-services-index .services-table thead{
    background: #f8f9fa;
}

.fwh-admin-services-index .services-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-services-index .services-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-services-index .services-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.005);
}

.fwh-admin-services-index .services-table tbody tr.expiring-soon{
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
}

.fwh-admin-services-index .services-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-services-index .services-table tbody tr:last-child{
    border-bottom: none;
}

/* Domain Display */
.fwh-admin-services-index .domain-display{
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-index .domain-display i{
    color: #0d6efd;
}

/* Customer Info */
.fwh-admin-services-index .customer-info{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fwh-admin-services-index .customer-name{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-services-index .customer-email{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Status Badges */
.fwh-admin-services-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-index .status-badge i{
    font-size: 0.75rem;
}

/* Due Date Display */
.fwh-admin-services-index .due-date-display{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fwh-admin-services-index .due-date-main{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-services-index .due-date-warning{
    font-size: 0.75rem;
    color: #ffc107;
    font-weight: 600;
}

/* Price Display */
.fwh-admin-services-index .price-display{
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.fwh-admin-services-index .price-cycle{
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Action Buttons */
.fwh-admin-services-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.fwh-admin-services-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-services-index .empty-state{
    text-align: center;
    padding: 4rem 2rem;
}

.fwh-admin-services-index .empty-state i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.fwh-admin-services-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-services-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Button */
.fwh-admin-services-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-services-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-services-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-services-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-services-index .services-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-services-index .services-header-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-services-index .services-header-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-services-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-services-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-admin-services-index .btn-filter{
        flex: 1;
        justify-content: center;
    }
}


/* ---- admin/services/show ---- */

/* ===== SERVICE DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-services-show .service-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-services-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-services-show .service-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-show .service-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-services-show .service-header-info .meta-info{
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-show .service-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Status Banner */
.fwh-admin-services-show .status-banner{
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fwh-admin-services-show-fadeInUp 0.6s ease;
}

.fwh-admin-services-show .status-banner.active{
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.fwh-admin-services-show .status-banner.suspended{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
}

.fwh-admin-services-show .status-banner.pending{
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    border: 2px solid #6c757d;
}

.fwh-admin-services-show .status-banner-content{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-services-show .status-banner-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.fwh-admin-services-show .status-banner.active .status-banner-icon{ background: #28a745; }
.fwh-admin-services-show .status-banner.suspended .status-banner-icon{ background: #ffc107; }
.fwh-admin-services-show .status-banner.pending .status-banner-icon{ background: #6c757d; }

.fwh-admin-services-show .status-banner-text h5{
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.fwh-admin-services-show .status-banner-text p{
    margin: 0;
    font-size: 0.875rem;
}

/* Info Card */
.fwh-admin-services-show .info-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-services-show-fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-services-show .info-card:nth-child(1){ animation-delay: 0.2s; }
.fwh-admin-services-show .info-card:nth-child(2){ animation-delay: 0.3s; }
.fwh-admin-services-show .info-card:nth-child(3){ animation-delay: 0.4s; }

.fwh-admin-services-show .info-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-services-show .info-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-show .info-card .card-body{
    padding: 2rem;
}

/* Info Table */
.fwh-admin-services-show .info-table{
    margin: 0;
}

.fwh-admin-services-show .info-table tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-services-show .info-table tr:last-child{
    border-bottom: none;
}

.fwh-admin-services-show .info-table th{
    font-weight: 600;
    color: #6c757d;
    padding: 1rem 0.75rem;
    width: 35%;
}

.fwh-admin-services-show .info-table td{
    padding: 1rem 0.75rem;
    color: #2d3748;
    font-weight: 500;
}

.fwh-admin-services-show .info-table code{
    background: #f8f9fa;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    color: #0d6efd;
    font-weight: 600;
}

/* Customer Link */
.fwh-admin-services-show .customer-link{
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fwh-admin-services-show .customer-link:hover{
    color: #0a58ca;
}

/* Resource Card */
.fwh-admin-services-show .resource-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-services-show-fadeInUp 0.6s ease 0.3s both;
}

.fwh-admin-services-show .resource-card .card-header{
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-services-show .resource-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-services-show .resource-card .card-body{
    padding: 2rem;
}

/* Resource Item */
.fwh-admin-services-show .resource-item{
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fwh-admin-services-show .resource-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-services-show .resource-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fwh-admin-services-show .resource-label{
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-show .resource-label i{
    color: #17a2b8;
}

.fwh-admin-services-show .resource-value{
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Progress Bar */
.fwh-admin-services-show .custom-progress{
    height: 30px;
    border-radius: 10px;
    background: #e9ecef;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fwh-admin-services-show .custom-progress-bar{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: width 0.6s ease;
    border-radius: 10px;
}

/* Sidebar Cards */
.fwh-admin-services-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-services-show-fadeInRight 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-services-show .sidebar-card:nth-child(1){ animation-delay: 0.5s; }
.fwh-admin-services-show .sidebar-card:nth-child(2){ animation-delay: 0.6s; }

.fwh-admin-services-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-services-show .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-show .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Action Buttons */
.fwh-admin-services-show .action-btn{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid transparent;
}

.fwh-admin-services-show .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Notes Card */
.fwh-admin-services-show .notes-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-services-show-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-services-show .notes-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-services-show .notes-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-services-show .notes-card .card-body{
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

/* Status Badge */
.fwh-admin-services-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Button */
.fwh-admin-services-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-services-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Activity Item */
.fwh-admin-services-show .activity-item{
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.fwh-admin-services-show .activity-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-services-show .activity-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: white;
}

.fwh-admin-services-show .activity-content{
    flex: 1;
}

.fwh-admin-services-show .activity-content strong{
    display: block;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.fwh-admin-services-show .activity-content small{
    color: #6c757d;
}

/* Animations */
@keyframes fwh-admin-services-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-services-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-services-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-services-show .service-details-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-services-show .service-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-services-show .service-actions .btn{
        width: 100%;
    }
    
    .fwh-admin-services-show .status-banner{
        flex-direction: column;
        gap: 1rem;
    }
    
    .fwh-admin-services-show .info-card .card-body, .fwh-admin-services-show .resource-card .card-body, .fwh-admin-services-show .sidebar-card .card-body{
        padding: 1.5rem;
    }
}


/* ---- admin/settings/index ---- */

/* ===== SETTINGS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-settings-index .settings-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-settings-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-settings-index .settings-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-settings-index .settings-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-settings-index .settings-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Settings Card */
.fwh-admin-settings-index .settings-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-settings-index-fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-settings-index .settings-card:nth-child(1){ animation-delay: 0.1s; }
.fwh-admin-settings-index .settings-card:nth-child(2){ animation-delay: 0.2s; }
.fwh-admin-settings-index .settings-card:nth-child(3){ animation-delay: 0.3s; }

.fwh-admin-settings-index .settings-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-settings-index .settings-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-settings-index .settings-card .card-header h5 i{
    color: #0d6efd;
}

.fwh-admin-settings-index .settings-card .card-body{
    padding: 2rem;
}

/* Form Elements */
.fwh-admin-settings-index .form-label{
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-settings-index .form-label i{
    color: #0d6efd;
}

.fwh-admin-settings-index .form-control, .fwh-admin-settings-index .form-select{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-admin-settings-index .form-control:focus, .fwh-admin-settings-index .form-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Info Alert */
.fwh-admin-settings-index .info-alert{
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #17a2b8;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

/* Config Table */
.fwh-admin-settings-index .config-table{
    margin: 0;
}

.fwh-admin-settings-index .config-table tr{
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-settings-index .config-table tr:last-child{
    border-bottom: none;
}

.fwh-admin-settings-index .config-table th{
    font-weight: 600;
    color: #6c757d;
    padding: 1rem 0.75rem;
    width: 35%;
    background: #f8f9fa;
}

.fwh-admin-settings-index .config-table td{
    padding: 1rem 0.75rem;
    color: #2d3748;
    font-weight: 500;
    font-family: "Courier New", monospace;
}

/* Sidebar Cards */
.fwh-admin-settings-index .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-settings-index-fadeInRight 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-settings-index .sidebar-card:nth-child(1){ animation-delay: 0.4s; }
.fwh-admin-settings-index .sidebar-card:nth-child(2){ animation-delay: 0.5s; }
.fwh-admin-settings-index .sidebar-card:nth-child(3){ animation-delay: 0.6s; }

.fwh-admin-settings-index .sidebar-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-settings-index .sidebar-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.fwh-admin-settings-index .sidebar-card .card-body{
    padding: 1.5rem;
}

/* Info Item */
.fwh-admin-settings-index .info-item{
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.fwh-admin-settings-index .info-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-settings-index .info-item strong{
    display: block;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fwh-admin-settings-index .info-item .value{
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Status Badge */
.fwh-admin-settings-index .status-badge{
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Service Status */
.fwh-admin-settings-index .service-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.fwh-admin-settings-index .service-item:last-child{
    margin-bottom: 0;
}

.fwh-admin-settings-index .service-name{
    font-weight: 600;
    color: #2d3748;
}

/* Quick Action Buttons */
.fwh-admin-settings-index .action-btn{
    padding: 0.875rem 1.25rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px solid transparent;
}

.fwh-admin-settings-index .action-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Section Divider */
.fwh-admin-settings-index .section-divider{
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
    margin: 2rem 0;
}

/* Gateway Section */
.fwh-admin-settings-index .gateway-section{
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.fwh-admin-settings-index .gateway-section:last-child{
    margin-bottom: 0;
}

.fwh-admin-settings-index .gateway-section h6{
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-settings-index .gateway-section h6 i{
    color: #0d6efd;
}

/* Enhanced Button */
.fwh-admin-settings-index .btn-enhanced{
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-settings-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-settings-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-settings-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-settings-index-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-settings-index .settings-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-settings-index .settings-card .card-body, .fwh-admin-settings-index .sidebar-card .card-body{
        padding: 1.5rem;
    }
}


/* ---- admin/support ---- */

.fwh-admin-support .support-header{
    margin-bottom: 2rem;
}

.fwh-admin-support .support-header h2{
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-size: 1.75rem;
}

.fwh-admin-support .support-header h2 i{
    color: #4e73df;
}

.fwh-admin-support .support-subtitle{
    color: #858796;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.fwh-admin-support .support-card{
    background: white;
    border-radius: 12px;
    box-shadow: 0 0.15rem 1.75rem rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-support .support-card:hover{
    box-shadow: 0 0.5rem 2rem rgba(58, 59, 69, 0.2);
    transform: translateY(-3px);
}

.fwh-admin-support .support-card-header{
    background: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-support .support-card-header h6{
    margin: 0;
    font-weight: 700;
    color: #5a5c69;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-support .support-card-header h6 i{
    color: #4e73df;
}

.fwh-admin-support .support-card-body{
    padding: 1.5rem;
}

.fwh-admin-support .support-option{
    background: white;
    border: 2px solid #e3e6f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.fwh-admin-support .support-option:hover{
    border-color: #4e73df;
    background: #f8f9fc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.15);
}

.fwh-admin-support .support-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.fwh-admin-support .support-option:hover .support-icon{
    transform: scale(1.1);
}

.fwh-admin-support .support-icon.primary{
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1), rgba(78, 115, 223, 0.2));
    color: #4e73df;
}

.fwh-admin-support .support-icon.success{
    background: linear-gradient(135deg, rgba(28, 200, 138, 0.1), rgba(28, 200, 138, 0.2));
    color: #1cc88a;
}

.fwh-admin-support .support-icon.info{
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.1), rgba(54, 185, 204, 0.2));
    color: #36b9cc;
}

.fwh-admin-support .support-icon.warning{
    background: linear-gradient(135deg, rgba(246, 194, 62, 0.1), rgba(246, 194, 62, 0.2));
    color: #f6c23e;
}

.fwh-admin-support .support-title{
    font-weight: 700;
    color: #5a5c69;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.fwh-admin-support .support-description{
    color: #858796;
    font-size: 0.9rem;
    margin: 0;
}

.fwh-admin-support .contact-info{
    background: #f8f9fc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-support .contact-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e73df;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fwh-admin-support .contact-details{
    flex: 1;
}

.fwh-admin-support .contact-label{
    font-size: 0.75rem;
    color: #858796;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.fwh-admin-support .contact-value{
    color: #5a5c69;
    font-weight: 600;
    font-size: 1rem;
}

.fwh-admin-support .faq-item{
    background: white;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fwh-admin-support .faq-item:hover{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fwh-admin-support .faq-question{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-support .faq-question i{
    color: #4e73df;
}

.fwh-admin-support .faq-answer{
    color: #858796;
    line-height: 1.6;
    margin: 0;
}

.fwh-admin-support .resource-item{
    background: white;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fwh-admin-support .resource-item:hover{
    border-color: #4e73df;
    background: #f8f9fc;
}

.fwh-admin-support .resource-icon{
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1), rgba(78, 115, 223, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4e73df;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fwh-admin-support .resource-content{
    flex: 1;
}

.fwh-admin-support .resource-title{
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.fwh-admin-support .resource-description{
    color: #858796;
    font-size: 0.85rem;
    margin: 0;
}


/* ---- admin/tickets/index ---- */

/* ===== SUPPORT TICKETS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-tickets-index .tickets-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-tickets-index-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-tickets-index .tickets-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-index .tickets-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-tickets-index .tickets-header-info p{
    color: #6c757d;
    margin: 0;
}

/* Stats Grid */
.fwh-admin-tickets-index .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fwh-admin-tickets-index-fadeInUp 0.6s ease;
}

.fwh-admin-tickets-index .stat-card{
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fwh-admin-tickets-index .stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fwh-admin-tickets-index .stat-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.fwh-admin-tickets-index .stat-card:hover::before{
    width: 8px;
}

.fwh-admin-tickets-index .stat-card.primary::before{
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-tickets-index .stat-card.warning::before{
    background: linear-gradient(180deg, #ffc107 0%, #ff6b35 100%);
}

.fwh-admin-tickets-index .stat-card.info::before{
    background: linear-gradient(180deg, #17a2b8 0%, #138496 100%);
}

.fwh-admin-tickets-index .stat-card.secondary::before{
    background: linear-gradient(180deg, #6c757d 0%, #495057 100%);
}

.fwh-admin-tickets-index .stat-card.danger::before{
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
}

.fwh-admin-tickets-index .stat-card.success::before{
    background: linear-gradient(180deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-tickets-index .stat-content{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.fwh-admin-tickets-index .stat-info{
    flex: 1;
}

.fwh-admin-tickets-index .stat-label{
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.fwh-admin-tickets-index .stat-value{
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.fwh-admin-tickets-index .stat-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.fwh-admin-tickets-index .stat-card:hover .stat-icon{
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.fwh-admin-tickets-index .stat-card.primary .stat-icon{ background: #0d6efd; color: #0d6efd; }
.fwh-admin-tickets-index .stat-card.warning .stat-icon{ background: #ffc107; color: #ffc107; }
.fwh-admin-tickets-index .stat-card.info .stat-icon{ background: #17a2b8; color: #17a2b8; }
.fwh-admin-tickets-index .stat-card.secondary .stat-icon{ background: #6c757d; color: #6c757d; }
.fwh-admin-tickets-index .stat-card.danger .stat-icon{ background: #dc3545; color: #dc3545; }
.fwh-admin-tickets-index .stat-card.success .stat-icon{ background: #28a745; color: #28a745; }

/* Filter Buttons */
.fwh-admin-tickets-index .filter-buttons{
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fwh-admin-tickets-index-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-tickets-index .btn-filter{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-index .btn-filter:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-tickets-index .btn-filter.active{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fwh-admin-tickets-index .btn-filter .badge{
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Table Card */
.fwh-admin-tickets-index .tickets-table-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: fwh-admin-tickets-index-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-tickets-index .tickets-table-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
}

.fwh-admin-tickets-index .tickets-table-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-index .tickets-table-card .card-body{
    padding: 0;
}

/* Enhanced Table */
.fwh-admin-tickets-index .tickets-table{
    margin: 0;
}

.fwh-admin-tickets-index .tickets-table thead{
    background: #f8f9fa;
}

.fwh-admin-tickets-index .tickets-table thead th{
    font-weight: 700;
    color: #495057;
    border: none;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.fwh-admin-tickets-index .tickets-table tbody tr{
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.fwh-admin-tickets-index .tickets-table tbody tr:hover{
    background: #f8f9fa;
    transform: scale(1.005);
}

.fwh-admin-tickets-index .tickets-table tbody tr.urgent-ticket{
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
}

.fwh-admin-tickets-index .tickets-table tbody td{
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.fwh-admin-tickets-index .tickets-table tbody tr:last-child{
    border-bottom: none;
}

/* Ticket Number */
.fwh-admin-tickets-index .ticket-number{
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fwh-admin-tickets-index .ticket-number:hover{
    color: #0a58ca;
    transform: translateX(2px);
}

/* Customer Info */
.fwh-admin-tickets-index .customer-info{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fwh-admin-tickets-index .customer-name{
    font-weight: 600;
    color: #2d3748;
}

.fwh-admin-tickets-index .customer-email{
    color: #6c757d;
    font-size: 0.875rem;
}

/* Subject Display */
.fwh-admin-tickets-index .ticket-subject{
    font-weight: 500;
    color: #495057;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Status Badges */
.fwh-admin-tickets-index .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-tickets-index .status-badge i{
    font-size: 0.75rem;
}

/* Reply Count */
.fwh-admin-tickets-index .reply-count{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-weight: 600;
    color: #495057;
}

.fwh-admin-tickets-index .reply-count i{
    color: #0d6efd;
}

/* Time Display */
.fwh-admin-tickets-index .time-display{
    color: #6c757d;
    font-size: 0.9rem;
}

/* Action Buttons */
.fwh-admin-tickets-index .btn-action{
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.fwh-admin-tickets-index .btn-action:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-tickets-index .empty-state{
    text-align: center;
    padding: 4rem 2rem;
}

.fwh-admin-tickets-index .empty-state i{
    font-size: 5rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    animation: fwh-admin-tickets-index-float 3s ease-in-out infinite;
}

@keyframes fwh-admin-tickets-index-float{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.fwh-admin-tickets-index .empty-state h4{
    color: #2d3748;
    margin-bottom: 1rem;
}

.fwh-admin-tickets-index .empty-state p{
    color: #6c757d;
    font-size: 1.1rem;
}

/* Enhanced Button */
.fwh-admin-tickets-index .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-tickets-index .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fwh-admin-tickets-index-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-tickets-index-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-tickets-index .tickets-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-tickets-index .stats-grid{
        grid-template-columns: 1fr;
    }
    
    .fwh-admin-tickets-index .filter-buttons{
        width: 100%;
    }
    
    .fwh-admin-tickets-index .btn-filter{
        flex: 1;
        justify-content: center;
    }
    
    .fwh-admin-tickets-index .tickets-table{
        font-size: 0.875rem;
    }
    
    .fwh-admin-tickets-index .tickets-table thead th, .fwh-admin-tickets-index .tickets-table tbody td{
        padding: 0.75rem 1rem;
    }
}


/* ---- admin/tickets/show ---- */

/* ===== TICKET DETAILS ENHANCED STYLES ===== */

/* Page Header */
.fwh-admin-tickets-show .ticket-details-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    animation: fwh-admin-tickets-show-fadeInDown 0.6s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.fwh-admin-tickets-show .ticket-header-info h2{
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-show .ticket-header-info h2 i{
    color: #0d6efd;
}

.fwh-admin-tickets-show .ticket-header-info .meta-info{
    color: #6c757d;
    margin: 0;
}

.fwh-admin-tickets-show .ticket-actions{
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Ticket Status Banner */
.fwh-admin-tickets-show .status-banner{
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fwh-admin-tickets-show-fadeInUp 0.6s ease;
}

.fwh-admin-tickets-show .status-banner.open{
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #ffc107;
}

.fwh-admin-tickets-show .status-banner.answered{
    background: linear-gradient(135deg, #d1ecf1 0%, #b8daff 100%);
    border: 2px solid #17a2b8;
}

.fwh-admin-tickets-show .status-banner.closed{
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    border: 2px solid #6c757d;
}

.fwh-admin-tickets-show .status-banner-content{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fwh-admin-tickets-show .status-banner-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.fwh-admin-tickets-show .status-banner.open .status-banner-icon{
    background: #ffc107;
    color: white;
}

.fwh-admin-tickets-show .status-banner.answered .status-banner-icon{
    background: #17a2b8;
    color: white;
}

.fwh-admin-tickets-show .status-banner.closed .status-banner-icon{
    background: #6c757d;
    color: white;
}

.fwh-admin-tickets-show .status-banner-text h5{
    margin: 0 0 0.25rem 0;
    font-weight: 700;
}

.fwh-admin-tickets-show .status-banner-text p{
    margin: 0;
    font-size: 0.875rem;
}

/* Ticket Details Card */
.fwh-admin-tickets-show .ticket-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-tickets-show-fadeInUp 0.6s ease 0.2s both;
}

.fwh-admin-tickets-show .ticket-card .card-header{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-tickets-show .ticket-card .card-header h5{
    margin: 0;
    font-weight: 700;
    color: #2d3748;
}

.fwh-admin-tickets-show .ticket-card .card-body{
    padding: 1.5rem;
}

/* Conversation Card */
.fwh-admin-tickets-show .conversation-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fwh-admin-tickets-show-fadeInUp 0.6s ease 0.3s both;
}

.fwh-admin-tickets-show .conversation-card .card-header{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-tickets-show .conversation-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-show .conversation-card .card-body{
    padding: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
}

/* Reply Item */
.fwh-admin-tickets-show .reply-item{
    position: relative;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: fwh-admin-tickets-show-fadeIn 0.5s ease;
}

@keyframes fwh-admin-tickets-show-fadeIn{
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fwh-admin-tickets-show .reply-item:hover{
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fwh-admin-tickets-show .reply-item.customer{
    background: white;
    border: 2px solid #e9ecef;
    border-left: 4px solid #0d6efd;
}

.fwh-admin-tickets-show .reply-item.admin{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-left: 4px solid #28a745;
}

.fwh-admin-tickets-show .reply-item.initial{
    border-left-color: #ffc107;
    border-left-width: 5px;
}

.fwh-admin-tickets-show .reply-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fwh-admin-tickets-show .reply-author{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-show .reply-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.fwh-admin-tickets-show .reply-avatar.customer{
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.fwh-admin-tickets-show .reply-avatar.admin{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.fwh-admin-tickets-show .reply-author-info strong{
    color: #2d3748;
    font-weight: 700;
}

.fwh-admin-tickets-show .reply-role-badge{
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.fwh-admin-tickets-show .reply-time{
    color: #6c757d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-tickets-show .reply-message{
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Reply Form Card */
.fwh-admin-tickets-show .reply-form-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fwh-admin-tickets-show-fadeInUp 0.6s ease 0.4s both;
}

.fwh-admin-tickets-show .reply-form-card .card-header{
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-tickets-show .reply-form-card .card-header h5{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fwh-admin-tickets-show .reply-form-card .card-body{
    padding: 1.5rem;
}

/* Sidebar Cards */
.fwh-admin-tickets-show .sidebar-card{
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    animation: fwh-admin-tickets-show-fadeInRight 0.6s ease;
    animation-fill-mode: both;
}

.fwh-admin-tickets-show .sidebar-card:nth-child(1){ animation-delay: 0.5s; }
.fwh-admin-tickets-show .sidebar-card:nth-child(2){ animation-delay: 0.6s; }
.fwh-admin-tickets-show .sidebar-card:nth-child(3){ animation-delay: 0.7s; }

.fwh-admin-tickets-show .sidebar-card .card-header{
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 16px 16px 0 0;
}

.fwh-admin-tickets-show .sidebar-card .card-header h6{
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fwh-admin-tickets-show .sidebar-card .card-body{
    padding: 1.25rem;
}

.fwh-admin-tickets-show .info-item{
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.fwh-admin-tickets-show .info-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.fwh-admin-tickets-show .info-label{
    font-weight: 600;
    color: #6c757d;
}

.fwh-admin-tickets-show .info-value{
    font-weight: 600;
    color: #2d3748;
}

/* Status Badges */
.fwh-admin-tickets-show .status-badge{
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Elements */
.fwh-admin-tickets-show .form-control{
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
}

.fwh-admin-tickets-show .form-control:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.fwh-admin-tickets-show textarea.form-control{
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Button */
.fwh-admin-tickets-show .btn-enhanced{
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fwh-admin-tickets-show .btn-enhanced:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.fwh-admin-tickets-show .empty-state{
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.fwh-admin-tickets-show .empty-state i{
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Alert Closed */
.fwh-admin-tickets-show .alert-closed{
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
    border-left: 4px solid #6c757d;
    padding: 1.25rem;
}

/* Animations */
@keyframes fwh-admin-tickets-show-fadeInDown{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-tickets-show-fadeInUp{
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fwh-admin-tickets-show-fadeInRight{
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px){
    .fwh-admin-tickets-show .ticket-details-header{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fwh-admin-tickets-show .ticket-actions{
        width: 100%;
        flex-direction: column;
    }
    
    .fwh-admin-tickets-show .ticket-actions .btn, .fwh-admin-tickets-show .ticket-actions form{
        width: 100%;
    }
    
    .fwh-admin-tickets-show .status-banner{
        flex-direction: column;
        gap: 1rem;
    }
    
    .fwh-admin-tickets-show .conversation-card .card-body{
        max-height: 400px;
    }
}

