.premium-auth-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Full width button variant */
.premium-auth-btn-full {
    width: 100%;
    min-width: 0;
}

/* Form Helper Text */
.premium-form-helper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border-left: 3px solid #316FA2;
    border-radius: 8px;
}

.premium-form-helper svg {
    width: 16px;
    height: 16px;
    color: #316FA2;
    flex-shrink: 0;
}

.premium-form-helper span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Form Sections */
.premium-form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f0f7fb;
}

.premium-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.premium-form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #316FA2;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-form-section-title svg {
    width: 22px;
    height: 22px;
    color: #316FA2;
}

/* Required indicator */
.premium-form-required {
    color: #ef4444;
    font-weight: 700;
    margin-left: 4px;
}

/* Phone Group */
.premium-phone-group {
    display: flex;
    gap: 8px;
}

.premium-phone-dial {
    width: 80px;
    flex-shrink: 0;
}

.premium-phone-number {
    flex: 1;
}

/* Password Group */
.premium-password-group {
    display: flex;
    gap: 10px;
}

.premium-password-group .premium-form-input {
    flex: 1;
}

.premium-generate-password {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #316FA2;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.premium-generate-password:hover {
    background: #2558a0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-generate-password svg {
    width: 16px;
    height: 16px;
}

/* Select Wrapper */
.premium-select-wrapper {
    position: relative;
}

.premium-form-select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.premium-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #316FA2;
    width: 20px;
    height: 20px;
}

.premium-select-arrow svg {
    width: 100%;
    height: 100%;
}

/* Agreements Section */
.premium-form-agreements {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e8f2f8;
}

.premium-form-agreements .premium-checkbox-wrapper {
    margin-bottom: 16px;
}

.premium-form-agreements .premium-checkbox-wrapper:last-child {
    margin-bottom: 0;
}

.premium-form-agreements .premium-checkbox-label {
    font-size: 13px;
    line-height: 1.6;
}

.premium-form-agreements .premium-checkbox-label a {
    color: #316FA2;
    font-weight: 700;
    text-decoration: none;
}

.premium-form-agreements .premium-checkbox-label a:hover {
    text-decoration: underline;
}

/* Register Card */
.premium-register-card {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.2);
    animation: slideInUp 0.5s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.premium-register-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 60%);
}

.premium-register-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.premium-register-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.premium-register-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.premium-register-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.premium-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ffffff;
    color: #316FA2;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.premium-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #316FA2;
}

.premium-register-btn svg {
    width: 20px;
    height: 20px;
}

.premium-register-illustration {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.premium-register-illustration svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0.9;
}

/* Auth Responsive */
@media only screen and (max-width: 992px) {
    .row > .col-8,
    .row > .col-4 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px) {
    .premium-auth-header {
        padding: 24px;
        flex-direction: row;
        gap: 16px;
    }

    .premium-auth-icon {
        width: 52px;
        height: 52px;
    }

    .premium-auth-icon svg {
        width: 26px;
        height: 26px;
    }

    .premium-auth-title {
        font-size: 20px;
    }

    .premium-auth-subtitle {
        font-size: 14px;
    }

    .premium-auth-card-header {
        padding: 20px 24px;
    }

    .premium-auth-card-icon {
        width: 40px;
        height: 40px;
    }

    .premium-auth-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .premium-auth-card-title {
        font-size: 18px;
    }

    .premium-auth-card-body {
        padding: 24px;
    }

    .premium-form-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .premium-auth-actions {
        flex-direction: column;
    }

    .premium-auth-btn-primary,
    .premium-auth-btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .premium-register-card {
        padding: 24px;
        margin-top: 0;
    }
}

@media only screen and (max-width: 480px) {
    .premium-auth-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .premium-auth-title {
        font-size: 18px;
    }

    .premium-auth-card-body {
        padding: 20px;
    }

    .premium-register-card {
        padding: 20px;
    }

    .premium-register-title {
        font-size: 18px;
    }

    .premium-register-text {
        font-size: 13px;
    }
}

/* ===================================
   CLIENT AREA REDESIGN
   =================================== */

/* Main Container */
.bclientarea {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Column */
.bclientarea > .col-3 {
    flex: 0 0 280px;
    max-width: 280px;
}

/* Content Column */
.bclientarea > .col-9 {
    flex: 1;
    min-width: 0;
}

/* Menu Card */
.bmenu {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
}

.bmenu:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Menu Header */
.bmenu-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.bmenu-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bmenu-header span {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Menu Content */
.bmenu-content {
    padding: 8px;
}

.bmenu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bmenu-content > ul > li {
    margin-bottom: 4px;
}

.bmenu-content > ul > li:last-child {
    margin-bottom: 0;
}

/* Menu Links */
.bmenu-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.bmenu-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(49, 111, 162, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.bmenu-content a:hover {
    background: rgba(49, 111, 162, 0.05);
    color: #316FA2;
    transform: translateX(4px);
}

.bmenu-content a:hover::before {
    width: 100%;
}

.bmenu-content a > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.bmenu-content a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.bmenu-content a:hover i {
    transform: scale(1.1);
    color: #316FA2;
}

.bmenu-content a > div:last-child i {
    transition: transform 0.3s ease;
}

/* Active State */
.bmenu-content li.active > a {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
    transform: translateX(4px);
}

.bmenu-content li.active > a i {
    color: #ffffff;
}

.bmenu-content li.active > a::before {
    display: none;
}

/* Submenu Button */
.bmenu-altmenu-button > div:last-child i {
    font-size: 20px;
}

.bmenu-altmenu-button.active > div:last-child i {
    transform: rotate(180deg);
}

/* Submenu */
.bmenu-altmenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}

.bmenu-altmenu.show {
    max-height: 500px;
}

.bmenu-altmenu ul {
    padding: 4px 0 4px 12px;
    margin: 0;
    list-style: none;
    border-left: 2px solid #e8f2f8;
    margin-left: 20px;
}

.bmenu-altmenu li {
    margin-bottom: 2px;
}

.bmenu-altmenu li:last-child {
    margin-bottom: 0;
}

.bmenu-altmenu a {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.bmenu-altmenu a:hover {
    color: #316FA2;
    background: rgba(49, 111, 162, 0.04);
}

.bmenu-altmenu a i {
    font-size: 16px;
    width: 20px;
}

.bmenu-altmenu li.active a {
    background: rgba(49, 111, 162, 0.1);
    color: #316FA2;
    border-left: 3px solid #316FA2;
    margin-left: -2px;
}

/* Content Area */
.bcontent {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    padding: 32px;
    min-height: 500px;
    animation: slideInUp 0.5s ease-out 0.1s both;
}

/* Content Header */
.premium-content-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-content-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.2);
    flex-shrink: 0;
}

.premium-content-icon i {
    font-size: 24px;
    color: #ffffff;
}

.premium-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #316FA2;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.premium-content-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Stats Grid */
.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.premium-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    border: 2px solid #e8f2f8;
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(49, 111, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-stat-card:hover {
    border-color: #316FA2;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.15);
}

.premium-stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.premium-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(49, 111, 162, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.premium-stat-icon i {
    font-size: 22px;
    color: #316FA2;
}

.premium-stat-badge {
    padding: 4px 10px;
    background: #316FA2;
    color: #ffffff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.premium-stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #316FA2;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.premium-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Quick Actions */
.premium-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.premium-quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-quick-action::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #316FA2;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.premium-quick-action:hover {
    border-color: #316FA2;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 111, 162, 0.15);
}

.premium-quick-action:hover::before {
    transform: scaleY(1);
}

.premium-quick-action-icon {
    width: 40px;
    height: 40px;
    background: rgba(49, 111, 162, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.premium-quick-action:hover .premium-quick-action-icon {
    background: #316FA2;
    transform: scale(1.05);
}

.premium-quick-action-icon i {
    font-size: 20px;
    color: #316FA2;
    transition: color 0.3s ease;
}

.premium-quick-action:hover .premium-quick-action-icon i {
    color: #ffffff;
}

.premium-quick-action-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
}

/* Alert Box */
.premium-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    animation: slideInUp 0.5s ease-out;
}

.premium-alert-info {
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.1) 0%, rgba(49, 111, 162, 0.05) 100%);
    border: 2px solid rgba(49, 111, 162, 0.2);
}

.premium-alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.premium-alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.premium-alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.premium-alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-alert-info .premium-alert-icon {
    background: rgba(49, 111, 162, 0.2);
}

.premium-alert-success .premium-alert-icon {
    background: rgba(16, 185, 129, 0.2);
}

.premium-alert-warning .premium-alert-icon {
    background: rgba(245, 158, 11, 0.2);
}

.premium-alert-error .premium-alert-icon {
    background: rgba(239, 68, 68, 0.2);
}

.premium-alert-icon i {
    font-size: 18px;
}

.premium-alert-info .premium-alert-icon i {
    color: #316FA2;
}

.premium-alert-success .premium-alert-icon i {
    color: #10b981;
}

.premium-alert-warning .premium-alert-icon i {
    color: #f59e0b;
}

.premium-alert-error .premium-alert-icon i {
    color: #ef4444;
}

.premium-alert-content {
    flex: 1;
}

.premium-alert-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.premium-alert-info .premium-alert-title {
    color: #316FA2;
}

.premium-alert-success .premium-alert-title {
    color: #10b981;
}

.premium-alert-warning .premium-alert-title {
    color: #f59e0b;
}

.premium-alert-error .premium-alert-title {
    color: #ef4444;
}

.premium-alert-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Data Table */
.premium-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 24px;
}

.premium-data-table thead {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
}

.premium-data-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #316FA2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-data-table thead th:first-child {
    border-top-left-radius: 10px;
}

.premium-data-table thead th:last-child {
    border-top-right-radius: 10px;
}

.premium-data-table tbody tr {
    transition: all 0.2s ease;
}

.premium-data-table tbody tr:hover {
    background: rgba(49, 111, 162, 0.03);
}

.premium-data-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: #1a2332;
    border-bottom: 1px solid #f0f7fb;
}

.premium-data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badge */
.premium-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.premium-status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.premium-status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.premium-status-active::before {
    background: #10b981;
}

.premium-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.premium-status-pending::before {
    background: #f59e0b;
}

.premium-status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.premium-status-inactive::before {
    background: #ef4444;
}

/* Pagination */
.premium-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.premium-pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8f2f8;
    border-radius: 10px;
    background: #ffffff;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-pagination-btn:hover {
    border-color: #316FA2;
    background: #316FA2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.2);
}

.premium-pagination-btn.active {
    border-color: #316FA2;
    background: #316FA2;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile Responsive */
@media only screen and (max-width: 991px) {
    .bclientarea {
        flex-direction: column;
        padding: 20px 0;
    }

    .bclientarea > .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bclientarea > .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bcontent {
        padding: 24px;
    }

    .premium-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-quick-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .bclientarea {
        padding: 16px 0;
    }

    .bmenu {
        margin-bottom: 16px;
    }

    .bmenu-header {
        padding: 12px 16px;
    }

    .bmenu-header span {
        font-size: 13px;
    }

    .bmenu-content a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .bmenu-content a i {
        font-size: 16px;
        width: 20px;
    }

    .bcontent {
        padding: 20px;
        border-radius: 12px;
    }

    .premium-content-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .premium-content-icon {
        width: 44px;
        height: 44px;
    }

    .premium-content-icon i {
        font-size: 20px;
    }

    .premium-content-title {
        font-size: 20px;
    }

    .premium-content-subtitle {
        font-size: 13px;
    }

    .premium-stat-card {
        padding: 16px;
    }

    .premium-stat-value {
        font-size: 24px;
    }

    .premium-data-table {
        font-size: 13px;
    }

    .premium-data-table thead th,
    .premium-data-table tbody td {
        padding: 10px 12px;
    }
}

@media only screen and (max-width: 480px) {
    .bclientarea {
        padding: 12px 0;
    }

    .bcontent {
        padding: 16px;
    }

    .premium-content-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .premium-content-title {
        font-size: 18px;
    }

    .premium-alert {
        padding: 12px 14px;
        gap: 10px;
    }

    .premium-data-table {
        display: block;
        overflow-x: auto;
    }
}/* ===================================
   PREMIUM PRODUCT REDESIGN - COMPLETE
   Colors: #316FA2 (Blue) & #FFFFFF (White)
   =================================== */

.premium-page-wrapper {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    padding: 30px 0;
    min-height: 100vh;
}

/* ===================================
   MAIN CONFIGURATION CARD
   =================================== */
.premium-config-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
    overflow: hidden;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Section */
.premium-config-header {
    background: #316FA2;
    padding: 24px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
}

.premium-config-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-header-badge {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.premium-gear-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    animation: rotateGear 6s linear infinite;
}

@keyframes rotateGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.premium-header-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.premium-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.premium-product-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Body Section */
.premium-config-body {
    padding: 32px;
}

/* ===================================
   SECTION STYLING
   =================================== */
.premium-section {
    margin-bottom: 28px;
}

.premium-section-label {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.premium-label-text {
    font-size: 15px;
    font-weight: 700;
    color: #316FA2;
    letter-spacing: -0.2px;
}

/* ===================================
   PERIOD OPTIONS
   =================================== */
.premium-period-option {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-period-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.04) 0%, rgba(49, 111, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-period-option:hover {
    border-color: #316FA2;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.15);
}

.premium-period-option:hover::before {
    opacity: 1;
}

.premium-period-option.premium-selected {
    border-color: #316FA2;
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.06) 0%, rgba(49, 111, 162, 0.02) 100%);
    box-shadow: 0 6px 18px rgba(49, 111, 162, 0.2);
}

.premium-period-check {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.premium-period-input {
    width: 24px;
    height: 24px;
    opacity: 0;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.premium-check-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #d1dce6;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-check-icon svg {
    width: 14px;
    height: 14px;
    color: #ffffff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-period-input:checked ~ .premium-check-icon {
    background: #316FA2;
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.3);
}

.premium-period-input:checked ~ .premium-check-icon svg {
    opacity: 1;
    transform: scale(1);
}

.premium-period-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.premium-period-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.premium-period-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.premium-old-price {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.premium-new-price,
.premium-current-price {
    font-size: 17px;
    font-weight: 800;
    color: #316FA2;
    letter-spacing: -0.3px;
}

.premium-discount-badge {
    background: #10b981;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* ===================================
   CUSTOM SELECT
   =================================== */
.premium-select-container {
    position: relative;
}

.premium-custom-select {
    width: 100%;
    padding: 14px 45px 14px 16px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}

.premium-custom-select:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 3px rgba(49, 111, 162, 0.1);
}

.premium-select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #316FA2;
    width: 20px;
    height: 20px;
}

/* ===================================
   DESCRIPTION BOX
   =================================== */
.premium-description-box {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: slideInUp 0.5s ease-out 0.1s both;
}

.premium-desc-icon {
    width: 36px;
    height: 36px;
    background: rgba(49, 111, 162, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-desc-icon svg {
    width: 20px;
    height: 20px;
    color: #316FA2;
}

.premium-desc-content {
    flex: 1;
}

.premium-desc-title {
    font-size: 15px;
    font-weight: 700;
    color: #316FA2;
    margin: 0 0 8px 0;
}

.premium-desc-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   SUMMARY BOX
   =================================== */
.premium-summary-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    overflow: hidden;
    position: sticky;
    top: 20px;
    animation: slideInUp 0.5s ease-out 0.2s both;
}

.premium-summary-head {
    background: #316FA2;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.premium-summary-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.premium-summary-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Loading State */
.premium-summary-loading {
    padding: 50px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
}

.premium-spinner-wrapper {
    text-align: center;
}

.premium-spinner {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.premium-spinner-circle {
    width: 10px;
    height: 10px;
    background: #316FA2;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.premium-spinner-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.premium-spinner-circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.premium-loading-msg {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* Summary Body */
.premium-summary-body {
    padding: 20px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
}

/* MAIN PRODUCT */
.premium-main-product {
    margin-bottom: 16px;
}

.premium-product-item {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-product-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-product-icon svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.premium-product-details {
    flex: 1;
}

.premium-product-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.1px;
}

.premium-product-period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.premium-product-price {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

/* ADDONS LIST */
.premium-addons-list {
    margin-bottom: 16px;
}

.premium-addon-item {
    background: #ffffff;
    border: 1px solid #e8f2f8;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.premium-addon-item:hover {
    border-color: #d1dce6;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.08);
}

.premium-addon-item:last-child {
    margin-bottom: 0;
}

.premium-addon-details {
    flex: 1;
}

.premium-addon-name {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 3px;
}

.premium-addon-selection {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 2px;
}

.premium-addon-period {
    font-size: 11px;
    color: #94a3b8;
}

.premium-addon-price {
    font-size: 14px;
    font-weight: 700;
    color: #316FA2;
    white-space: nowrap;
}

/* Divider Lines */
.premium-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e8f2f8 50%, transparent 100%);
    margin: 16px 0;
}

/* Price Rows */
.premium-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.premium-price-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.premium-price-value {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    letter-spacing: -0.2px;
}

/* Total Row */
.premium-total-row {
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.1) 0%, rgba(49, 111, 162, 0.05) 100%);
    border: 2px solid #316FA2;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.premium-total-label {
    font-size: 14px;
    font-weight: 700;
    color: #316FA2;
    letter-spacing: 0.3px;
}

.premium-total-value {
    font-size: 22px;
    font-weight: 900;
    color: #316FA2;
    letter-spacing: -0.5px;
}

/* Cart Button */
.premium-cart-button {
    width: 100%;
    background: #316FA2;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-cart-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.premium-cart-button:hover::before {
    width: 300px;
    height: 300px;
}

.premium-cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.35);
}

.premium-cart-button:active {
    transform: translateY(0);
}

.premium-cart-svg,
.premium-arrow-svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.premium-arrow-svg {
    transition: transform 0.3s ease;
}

.premium-cart-button:hover .premium-arrow-svg {
    transform: translateX(3px);
}

.premium-cart-button span {
    position: relative;
    z-index: 1;
}

/* ===================================
   ADDON STYLING - COMPLETELY REWRITTEN
   =================================== */
#beProductAddons .premium-section {
    animation: fadeIn 0.4s ease-out;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    border: 2px solid #e8f2f8;
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.06);
}

#beProductAddons .premium-section:hover {
    border-color: #316FA2;
    box-shadow: 0 6px 20px rgba(49, 111, 162, 0.12);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#beProductAddons .premium-section-label {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f2f8;
}

#beProductAddons .premium-section-label .premium-label-text {
    font-size: 16px;
    font-weight: 700;
    color: #316FA2;
    letter-spacing: -0.2px;
}

/* FORCE BLACK DESCRIPTIONS - EVERY POSSIBLE SELECTOR */
#beProductAddons p,
#beProductAddons .premium-section p,
#beProductAddons .premium-section > p,
#beProductAddons div p,
#beProductAddons * > p {
    color: #000000 !important;
    background: transparent !important;
    -webkit-text-fill-color: #000000 !important;
    text-fill-color: #000000 !important;
}

/* BLUE TITLES ONLY */
#beProductAddons label,
#beProductAddons .form-group label,
#beProductAddons .premium-section-label .premium-label-text {
    color: #316FA2 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 700 !important;
}

/* Remove all pseudo elements */
#beProductAddons *::before,
#beProductAddons *::after {
    display: none !important;
}

#beProductAddons label::before,
#beProductAddons p::before {
    content: none !important;
    display: none !important;
}

#beProductAddons .form-group {
    margin-bottom: 18px;
}

/* PREMIUM SELECTBOXES - CENTERED TEXT */
#beProductAddons select,
#beProductAddons .form-control {
    width: 100% !important;
    padding: 15px 50px 15px 18px !important;
    border: 3px solid #e8f2f8 !important;
    border-radius: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    background: #ffffff !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1) !important;
    line-height: 1.5 !important;
    height: auto !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23316FA2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 24px !important;
}

#beProductAddons select:hover {
    border-color: #316FA2 !important;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.2) !important;
    transform: translateY(-3px) !important;
    background-color: #f8fbfd !important;
}

#beProductAddons select:focus {
    outline: none !important;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 5px rgba(49, 111, 162, 0.2), 0 8px 24px rgba(49, 111, 162, 0.25) !important;
    transform: translateY(-3px) !important;
}

#beProductAddons select option {
    padding: 14px !important;
    font-weight: 500 !important;
    color: #1a2332 !important;
    background: #ffffff !important;
    line-height: 1.6 !important;
}

/* Other Input Fields */
#beProductAddons input[type="text"],
#beProductAddons input[type="number"],
#beProductAddons textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.06);
}

#beProductAddons input[type="text"]:hover,
#beProductAddons input[type="number"]:hover,
#beProductAddons textarea:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

#beProductAddons input[type="text"]:focus,
#beProductAddons input[type="number"]:focus,
#beProductAddons textarea:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 3px rgba(49, 111, 162, 0.1), 0 4px 12px rgba(49, 111, 162, 0.15);
}

#beProductAddons .form-check {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#beProductAddons .form-check:hover {
    background: rgba(49, 111, 162, 0.04);
}

#beProductAddons .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    appearance: none;
    background: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

#beProductAddons .form-check-input:hover {
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.15);
}

#beProductAddons .form-check-input:checked {
    background-color: #316FA2;
    border-color: #316FA2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.3);
}

#beProductAddons .form-check-label {
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.5;
}

#beProductAddons textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

/* Radio buttons */
#beProductAddons input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    appearance: none;
    background: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

#beProductAddons input[type="radio"]:hover {
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.15);
}

#beProductAddons input[type="radio"]:checked {
    border-color: #316FA2;
    border-width: 6px;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.3);
}

/* Help text */
#beProductAddons .help-block,
#beProductAddons .text-muted,
#beProductAddons small {
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 6px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    display: block !important;
}

/* ===================================
   FORCE RESPONSIVE - MOBILE FIRST
   =================================== */

/* Tablet and below */
@media only screen and (max-width: 991px) {
    .row > .col-9,
    .row > .col-3 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .premium-summary-box {
        position: relative !important;
        top: 0 !important;
        margin-top: 20px !important;
    }
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .row > .col-6 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .premium-config-header {
        padding: 16px !important;
    }

    .premium-product-title {
        font-size: 16px !important;
    }

    .premium-config-body {
        padding: 16px !important;
    }

    .premium-period-option {
        padding: 12px !important;
    }

    .premium-summary-head {
        padding: 12px 16px !important;
    }

    .premium-summary-body {
        padding: 14px !important;
    }

    .premium-total-value {
        font-size: 18px !important;
    }

    .premium-cart-button {
        padding: 12px !important;
        font-size: 14px !important;
    }

    #beProductAddons .premium-section {
        padding: 12px !important;
    }

    #beProductAddons select {
        padding: 10px 40px 10px 12px !important;
        font-size: 14px !important;
        min-height: 40px !important;
    }
}

/* Small mobile */
@media only screen and (max-width: 480px) {
    .premium-config-header {
        flex-direction: column !important;
        text-align: center !important;
        padding: 14px !important;
    }

    .premium-product-title {
        font-size: 15px !important;
    }

    .premium-config-body {
        padding: 12px !important;
    }

    .premium-period-option {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.premium-pulse {
    animation: pulse 2s infinite;
}

/* ===================================
   CART PAGE STYLES
   =================================== */

/* Cart Header */
.premium-cart-header {
    background: #316FA2;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    animation: slideInUp 0.5s ease-out;
}

.premium-cart-header-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.premium-cart-header-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.premium-cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.premium-cart-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

/* Cart Items Container */
.premium-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cart Item Card - REDESIGNED */
.premium-cart-item {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
}

.premium-cart-item:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
    transform: translateY(-2px);
}

.premium-cart-item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f7fb;
}

.premium-cart-item-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.2);
}

.premium-cart-item-logo svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.premium-cart-item-main {
    flex: 1;
}

.premium-cart-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #316FA2;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.premium-cart-item-period {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.premium-cart-item-period::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #316FA2;
    border-radius: 50%;
}

.premium-cart-item-price-main {
    font-size: 24px;
    font-weight: 900;
    color: #316FA2;
    white-space: nowrap;
    letter-spacing: -0.5px;
    text-align: right;
}

.premium-cart-item-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-left: 3px solid #316FA2;
    border-radius: 8px;
}

.premium-cart-item-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.premium-cart-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border: 1px solid #e8f2f8;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.premium-cart-spec-item:hover {
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.08);
}

.premium-cart-spec-icon {
    width: 32px;
    height: 32px;
    background: rgba(49, 111, 162, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-cart-spec-icon svg {
    width: 16px;
    height: 16px;
    color: #316FA2;
}

.premium-cart-spec-details {
    flex: 1;
}

.premium-cart-spec-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.premium-cart-spec-value {
    font-size: 13px;
    color: #1a2332;
    font-weight: 700;
}

.premium-cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.premium-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-cart-counter {
    display: flex;
    align-items: center;
    border: 2px solid #e8f2f8;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.08);
}

.premium-cart-counter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    color: #316FA2;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-cart-counter-btn:hover {
    background: #316FA2;
    color: #ffffff;
}

.premium-cart-counter-btn:active {
    transform: scale(0.95);
}

.premium-cart-counter-value {
    min-width: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    padding: 0 10px;
}

.premium-cart-item-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.15);
}

.premium-cart-item-remove:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    transform: scale(1.05);
}

.premium-cart-item-remove:active {
    transform: scale(0.95);
}

.premium-cart-item-remove svg {
    width: 18px;
    height: 18px;
}

.premium-cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.premium-cart-item-total-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 4px;
}

.premium-cart-item-total-price {
    font-size: 22px;
    font-weight: 900;
    color: #316FA2;
    letter-spacing: -0.5px;
}

/* Coupon Section */
.premium-coupon-section {
    margin: 16px 0;
}

.premium-coupon-toggle {
    margin-bottom: 12px;
}

.premium-coupon-checkbox {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.premium-coupon-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #1a2332;
    font-weight: 600;
    user-select: none;
}

.premium-coupon-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.premium-coupon-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.premium-coupon-checkbox:checked ~ .premium-coupon-label .premium-coupon-checkmark {
    background: #316FA2;
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.3);
}

.premium-coupon-checkbox:checked ~ .premium-coupon-label .premium-coupon-checkmark::after {
    display: block;
}

.premium-coupon-input-wrapper {
    position: relative;
    margin-top: 12px;
}

.premium-coupon-input {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 2px solid #e8f2f8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
}

.premium-coupon-input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 3px rgba(49, 111, 162, 0.1);
}

.premium-coupon-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.premium-coupon-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #316FA2;
    width: 20px;
    height: 20px;
}

.premium-coupon-icon svg {
    width: 100%;
    height: 100%;
}

/* Discount styling */
.premium-discount-label {
    color: #10b981 !important;
    font-weight: 700;
}

.premium-discount-value {
    color: #10b981 !important;
    font-weight: 700;
}

/* Empty Cart State */
.premium-empty-cart {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.premium-empty-cart-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.1) 0%, rgba(49, 111, 162, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.premium-empty-cart-icon svg {
    width: 40px;
    height: 40px;
    color: #316FA2;
}

.premium-empty-cart-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.premium-empty-cart-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

/* Cart Responsive */
@media only screen and (max-width: 992px) {
    .premium-cart-item-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .premium-cart-header {
        padding: 20px;
        flex-direction: row;
        gap: 16px;
        margin-bottom: 24px;
    }

    .premium-cart-header-icon {
        width: 48px;
        height: 48px;
    }

    .premium-cart-header-icon svg {
        width: 24px;
        height: 24px;
    }

    .premium-cart-title {
        font-size: 20px;
    }

    .premium-cart-subtitle {
        font-size: 13px;
    }

    .premium-cart-item {
        padding: 16px;
    }

    .premium-cart-item-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .premium-cart-item-logo {
        width: 48px;
        height: 48px;
    }

    .premium-cart-item-logo svg {
        width: 24px;
        height: 24px;
    }

    .premium-cart-item-title {
        font-size: 16px;
    }

    .premium-cart-item-period {
        font-size: 12px;
    }

    .premium-cart-item-price-main {
        font-size: 20px;
        width: 100%;
        text-align: left;
    }

    .premium-cart-item-specs {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }

    .premium-cart-spec-item {
        padding: 8px 12px;
    }

    .premium-cart-spec-icon {
        width: 28px;
        height: 28px;
    }

    .premium-cart-spec-icon svg {
        width: 14px;
        height: 14px;
    }

    .premium-cart-spec-label {
        font-size: 10px;
    }

    .premium-cart-spec-value {
        font-size: 12px;
    }

    .premium-cart-item-footer {
        flex-direction: column;
        gap: 12px;
    }

    .premium-cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .premium-cart-counter-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .premium-cart-counter-value {
        min-width: 45px;
        font-size: 15px;
    }

    .premium-cart-item-remove {
        width: 36px;
        height: 36px;
    }

    .premium-cart-item-total {
        width: 100%;
        align-items: flex-end;
    }

    .premium-cart-item-total-price {
        font-size: 20px;
    }

    .premium-coupon-input {
        font-size: 13px;
        padding: 10px 40px 10px 14px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-cart-header {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .premium-cart-title {
        font-size: 18px;
    }

    .premium-cart-item {
        padding: 14px;
    }

    .premium-cart-item-header {
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .premium-cart-item-title {
        font-size: 15px;
    }

    .premium-cart-item-price-main {
        font-size: 18px;
    }

    .premium-cart-item-specs {
        gap: 8px;
        margin-bottom: 12px;
    }

    .premium-cart-spec-item {
        padding: 8px 10px;
    }

    .premium-cart-counter {
        flex: 1;
    }

    .premium-cart-counter-btn {
        flex: 1;
        min-width: 36px;
    }

    .premium-cart-counter-value {
        flex: 1;
    }

    .premium-cart-item-total-price {
        font-size: 18px;
    }

    .premium-empty-cart {
        padding: 40px 20px;
    }
}

/* ===================================
   AUTH PAGES (LOGIN/REGISTER)
   =================================== */

/* Auth Header */
.premium-auth-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    animation: slideInUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.premium-auth-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-auth-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.premium-auth-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.premium-auth-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.premium-auth-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Auth Card */
.premium-auth-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
    animation: slideInUp 0.5s ease-out 0.1s both;
}

.premium-auth-card-header {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    padding: 24px 32px;
    border-bottom: 2px solid #e8f2f8;
    display: flex;
    align-items: center;
    gap: 16px;
}

.premium-auth-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(49, 111, 162, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-auth-card-icon svg {
    width: 24px;
    height: 24px;
    color: #316FA2;
}

.premium-auth-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #316FA2;
    margin: 0;
    letter-spacing: -0.3px;
}

.premium-auth-card-body {
    padding: 32px;
}

/* Form Styles */
.premium-form-group {
    margin-bottom: 24px;
}

.premium-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #316FA2;
    margin-bottom: 12px;
}

.premium-form-label svg {
    width: 18px;
    height: 18px;
    color: #316FA2;
}

.premium-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.06);
}

.premium-form-input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1), 0 4px 12px rgba(49, 111, 162, 0.15);
    transform: translateY(-1px);
}

.premium-form-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Checkbox */
.premium-checkbox-wrapper {
    margin-bottom: 28px;
}

.premium-checkbox-input {
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.premium-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    user-select: none;
}

.premium-checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.premium-checkbox-box::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.premium-checkbox-input:checked ~ .premium-checkbox-label .premium-checkbox-box {
    background: #316FA2;
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.3);
}

.premium-checkbox-input:checked ~ .premium-checkbox-label .premium-checkbox-box::after {
    display: block;
}

/* Auth Actions */
.premium-auth-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.premium-auth-btn-primary,
.premium-auth-btn-secondary {
    flex: 1;
    min-width: 200px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-auth-btn-primary {
    background: #316FA2;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-auth-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.premium-auth-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.premium-auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.35);
}

.premium-auth-btn-primary svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.premium-auth-btn-primary span {
    position: relative;
    z-index: 1;
}

.premium-auth-btn-secondary {
    background: #ffffff;
    color: #316FA2;
    border: 2px solid #316FA2;
}

.premium-auth-btn-secondary:hover {
    background: #f0f7fb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.15);
}

/* ===================================
   DASHBOARD PAGE REDESIGN
   =================================== */

/* Dashboard Grid Layout */
.premium-dashboard-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

/* User Info Card */
.premium-user-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.premium-user-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(49, 111, 162, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-user-card:hover::before {
    opacity: 1;
}

.premium-user-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-user-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-bottom: 2px solid #e8f2f8;
}

.premium-user-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #316FA2;
}

.premium-user-card-title i {
    font-size: 18px;
}

.premium-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ffffff;
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #316FA2;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-edit-btn:hover {
    background: #316FA2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-edit-btn i {
    font-size: 13px;
}

.premium-user-card-body {
    padding: 28px 24px;
}

.premium-user-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f7fb;
}

.premium-user-info-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.premium-user-info-row:last-child {
    margin-bottom: 0;
}

.premium-user-info-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.premium-user-info-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a2332;
    line-height: 1.6;
    word-break: break-word;
}

.premium-balance-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
    border: 2px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    color: #10b981;
    font-weight: 700;
    font-size: 15px;
}

/* Services Table Card */
.premium-services-card,
.premium-invoices-card,
.premium-tickets-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    animation: slideInUp 0.5s ease-out 0.1s both;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.premium-services-card::before,
.premium-invoices-card::before,
.premium-tickets-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(49, 111, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-services-card:hover,
.premium-invoices-card:hover,
.premium-tickets-card:hover {
    border-color: #316FA2;
    box-shadow: 0 12px 32px rgba(49, 111, 162, 0.18);
    transform: translateY(-6px);
}

.premium-services-card:hover::before,
.premium-invoices-card:hover::before,
.premium-tickets-card:hover::before {
    opacity: 1;
}

.premium-card-header {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    padding: 20px 24px;
    border-bottom: 2px solid #e8f2f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-card-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #316FA2;
}

.premium-card-header-title i {
    font-size: 22px;
}

.premium-card-body {
    padding: 0;
}

/* Dashboard Table */
.premium-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-dashboard-table thead {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
}

.premium-dashboard-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #316FA2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-dashboard-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f7fb;
}

.premium-dashboard-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(49, 111, 162, 0.02) 0%, rgba(49, 111, 162, 0.04) 100%);
}

.premium-dashboard-table tbody tr:last-child {
    border-bottom: none;
}

.premium-dashboard-table tbody td {
    padding: 16px 20px;
    font-size: 14px;
    color: #1a2332;
}

.premium-table-id {
    font-weight: 700;
    color: #316FA2;
    font-size: 13px;
}

.premium-table-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    background: #ffffff;
    transition: all 0.2s ease;
    margin-right: 8px;
    vertical-align: middle;
}

.premium-table-checkbox:hover {
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.15);
}

.premium-table-checkbox:checked {
    background-color: #316FA2;
    border-color: #316FA2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.premium-service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-service-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
}

.premium-service-tag {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.premium-date-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-date-main {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
}

.premium-date-sub {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}

.premium-date-sub.text-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.premium-date-sub.text-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.premium-date-sub.text-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Status Buttons in Table */
.premium-status-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    border: none;
}

.premium-status-btn::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.premium-status-btn.btn-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.premium-status-btn.btn-success::before {
    background: #10b981;
}

.premium-status-btn.btn-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.premium-status-btn.btn-warning::before {
    background: #f59e0b;
}

.premium-status-btn.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.premium-status-btn.btn-danger::before {
    background: #ef4444;
}

.premium-status-btn.btn-special {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.premium-status-btn.btn-special::before {
    background: #8b5cf6;
}

/* Action Buttons */
.premium-table-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    white-space: nowrap;
}

.premium-action-btn i {
    font-size: 14px;
}

.premium-action-btn.btn-primary {
    background: #316FA2;
    border-color: #316FA2;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.2);
}

.premium-action-btn.btn-primary:hover {
    background: #2558a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-action-btn.btn-warning {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.premium-action-btn.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.premium-action-btn.btn-transparent {
    background: #ffffff;
    border-color: #e8f2f8;
    color: #316FA2;
}

.premium-action-btn.btn-transparent:hover {
    background: #f8fbfd;
    border-color: #316FA2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.15);
}

/* Card Footer */
.premium-card-footer {
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-top: 2px solid #e8f2f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-card-footer-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.premium-card-footer-text b {
    color: #316FA2;
    font-weight: 800;
}

.premium-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 10px;
    color: #316FA2;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-view-all-btn:hover {
    background: #316FA2;
    border-color: #316FA2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.2);
}

.premium-view-all-btn i {
    font-size: 14px;
}

/* Empty State */
.premium-empty-state {
    padding: 60px 40px;
    text-align: center;
}

.premium-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.1) 0%, rgba(49, 111, 162, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.premium-empty-icon i {
    font-size: 36px;
    color: #316FA2;
}

.premium-empty-text {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

/* Create Button in Tickets Header */
.premium-create-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #316FA2;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.1);
}

.premium-create-btn:hover {
    background: #316FA2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-create-btn i {
    font-size: 15px;
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
    .premium-dashboard-grid {
        gap: 20px;
    }
    
    .premium-user-card-body {
        padding: 24px 20px;
    }
    
    .premium-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 768px) {
    .premium-user-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .premium-user-card-body {
        padding: 20px;
    }
    
    .premium-user-name {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .premium-user-info-row {
        grid-template-columns: 85px 1fr;
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .premium-user-info-label {
        font-size: 12px;
    }
    
    .premium-user-info-value {
        font-size: 13px;
    }
    
    .premium-dashboard-table {
        display: block;
        overflow-x: auto;
    }
    
    .premium-table-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .premium-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-card-header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .premium-dashboard-table thead th,
    .premium-dashboard-table tbody td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-user-card-body {
        padding: 16px;
    }
    
    .premium-user-card-header {
        padding: 14px 16px;
    }
    
    .premium-user-info-row {
        grid-template-columns: 75px 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .premium-card-header {
        padding: 14px 16px;
    }
    
    .premium-card-header-title {
        font-size: 16px;
    }
    
    .premium-empty-state {
        padding: 40px 20px;
    }
    
    .premium-empty-icon {
        width: 60px;
        height: 60px;
    }
    
    .premium-empty-icon i {
        font-size: 28px;
    }
}

/* ===================================
   SERVICES PAGE REDESIGN
   =================================== */

/* Services Main Card */
.premium-services-main-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    animation: slideInUp 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin-bottom: 24px;
}

.premium-services-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(49, 111, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-services-main-card:hover {
    border-color: #316FA2;
    box-shadow: 0 12px 32px rgba(49, 111, 162, 0.18);
    transform: translateY(-6px);
}

.premium-services-main-card:hover::before {
    opacity: 1;
}

/* Expand/Collapse Button */
.premium-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(49, 111, 162, 0.1);
    border: 2px solid #316FA2;
    border-radius: 8px;
    color: #316FA2;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
    vertical-align: middle;
}

.premium-expand-btn:hover {
    background: #316FA2;
    color: #ffffff;
    transform: scale(1.1);
}

.premium-expand-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.premium-expand-btn.expanded i {
    transform: rotate(180deg);
}

/* Extra Options Row */
.premium-extra-options-row {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-top: 2px solid #e8f2f8;
}

.premium-extra-options-content {
    padding: 24px;
}

.premium-auto-extend-wrapper {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.premium-auto-extend-wrapper:hover {
    border-color: #316FA2;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-auto-extend-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-auto-extend-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    background: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.premium-auto-extend-check input[type="checkbox"]:hover {
    border-color: #316FA2;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.15);
}

.premium-auto-extend-check input[type="checkbox"]:checked {
    background-color: #316FA2;
    border-color: #316FA2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.3);
}

.premium-auto-extend-check label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    line-height: 1.5;
}

.premium-save-options-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #316FA2;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-save-options-btn:hover {
    background: #2558a0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 111, 162, 0.35);
}

.premium-save-options-btn i {
    font-size: 16px;
}

/* Cancellation Requests Card */
.premium-cancellation-card {
    background: #ffffff;
    border: 2px solid #fecaca;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
    overflow: hidden;
    animation: slideInUp 0.5s ease-out 0.1s both;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.premium-cancellation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-cancellation-card:hover {
    border-color: #dc2626;
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.15);
    transform: translateY(-6px);
}

.premium-cancellation-card:hover::before {
    opacity: 1;
}

.premium-cancellation-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 20px 24px;
    border-bottom: none;
}

.premium-cancellation-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.premium-cancellation-title i {
    font-size: 22px;
}

.premium-cancellation-table thead {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.premium-cancellation-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #fecaca;
}

.premium-cancellation-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #fee2e2;
}

.premium-cancellation-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.02) 0%, rgba(220, 38, 38, 0.04) 100%);
}

.premium-cancel-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #dc2626;
    border: 2px solid #dc2626;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.premium-cancel-request-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.premium-cancel-request-btn i {
    font-size: 14px;
}

/* Cancellation Type Badge */
.premium-cancel-type {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
}

/* Hidden row initially */
.row-none {
    display: none;
}

.no-border td {
    border: none !important;
    padding: 0 !important;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-extra-options-content {
        padding: 16px;
    }
    
    .premium-auto-extend-wrapper {
        padding: 12px 16px;
    }
    
    .premium-auto-extend-check {
        gap: 10px;
    }
    
    .premium-auto-extend-check label {
        font-size: 13px;
    }
    
    .premium-save-options-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-expand-btn {
        width: 24px;
        height: 24px;
    }
    
    .premium-expand-btn i {
        font-size: 14px;
    }
    
    .premium-cancellation-table thead th,
    .premium-cancellation-table tbody td {
        padding: 12px 16px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-extra-options-content {
        padding: 12px;
    }
    
    .premium-auto-extend-wrapper {
        padding: 10px 12px;
        margin-bottom: 16px;
    }
    
    .premium-cancellation-header {
        padding: 16px 20px;
    }
    
    .premium-cancellation-title {
        font-size: 16px;
    }
}

/* ===================================
   SERVER MANAGEMENT PAGE REDESIGN
   =================================== */

/* Unpaid Invoice Alert */
.premium-invoice-alert {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: 2px solid #dc2626;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
    animation: slideInUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.premium-invoice-alert::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-invoice-alert-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.premium-invoice-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.premium-invoice-view-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.premium-invoice-view-btn i {
    font-size: 16px;
}

/* Resource Cards Grid */
.premium-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.premium-resource-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.08);
}

.premium-resource-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-resource-header {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    padding: 14px 16px;
    border-bottom: 2px solid #e8f2f8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-resource-header i {
    font-size: 18px;
    color: #316FA2;
}

.premium-resource-title {
    font-size: 13px;
    font-weight: 700;
    color: #316FA2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-resource-body {
    padding: 20px 16px;
    text-align: center;
}

.premium-resource-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.premium-resource-increase-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #316FA2;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.premium-resource-increase-btn:hover {
    background: #2558a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-resource-reinstall-btn {
    background: #ef4444;
}

.premium-resource-reinstall-btn:hover {
    background: #dc2626;
    color: #ffffff;
}

.premium-template-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 12px;
}

.premium-template-info i {
    font-size: 20px;
    color: #316FA2;
}

/* Accounting Card */
.premium-accounting-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.premium-accounting-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-accounting-body {
    padding: 24px;
}

.premium-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-price-main {
    font-size: 16px;
    font-weight: 600;
    color: #1a2332;
    letter-spacing: -0.5px;
}

.premium-next-due {
    text-align: right;
}

.premium-next-due-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.premium-next-due-date {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
}

.premium-accounting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
}

.premium-accounting-label {
    color: #64748b;
    font-weight: 600;
}

.premium-accounting-value {
    color: #1a2332;
    font-weight: 700;
}

/* Internet Card */
.premium-internet-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.premium-internet-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-internet-body {
    padding: 24px;
}

.premium-ip-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-ip-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-ip-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #316FA2;
    margin-bottom: 12px;
}

.premium-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(49, 111, 162, 0.1);
    border: 2px solid #316FA2;
    border-radius: 8px;
    color: #316FA2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-copy-btn:hover {
    background: #316FA2;
    color: #ffffff;
    transform: scale(1.1);
}

.premium-reassign-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #316FA2;
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-reassign-btn:hover {
    background: #2558a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.premium-status-label {
    color: #64748b;
    font-weight: 600;
}

.premium-status-value {
    font-weight: 700;
}

.premium-status-online {
    color: #10b981;
}

.premium-status-offline {
    color: #ef4444;
}

/* Usage Stats Card */
.premium-usage-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.premium-usage-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-usage-header {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    padding: 20px 24px;
    border-bottom: 2px solid #e8f2f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-usage-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #316FA2;
}

.premium-usage-title i {
    font-size: 22px;
}

.premium-upgrade-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #316FA2;
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-upgrade-btn:hover {
    background: #2558a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-upgrade-btn i {
    font-size: 15px;
}

.premium-usage-body {
    padding: 32px 24px;
}

.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.premium-stat-item {
    text-align: center;
}

.premium-stat-label {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 16px;
}

.premium-circle-chart {
    display: block;
    margin: 0 auto 16px;
    max-height: 140px;
}

.premium-circle-bg {
    fill: none;
    stroke: #f0f7fb;
    stroke-width: 3.8;
}

.premium-circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.premium-circle-percentage {
    fill: #1a2332;
    font-size: 7px;
    text-anchor: middle;
    font-weight: 700;
}

.premium-stat-text {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.premium-update-note {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    font-style: italic;
}

/* Login Info Card */
.premium-login-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.premium-login-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-login-body {
    padding: 24px;
}

.premium-credential-row {
    margin-bottom: 20px;
}

.premium-credential-row:last-of-type {
    margin-bottom: 24px;
}

.premium-credential-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-credential-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1a2332;
    font-family: 'Courier New', monospace;
}

.premium-security-note {
    padding: 14px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    color: #92400e;
    font-weight: 600;
    line-height: 1.5;
}

/* Uptime Card */
.premium-uptime-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.premium-uptime-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-uptime-body {
    padding: 24px;
    text-align: center;
}

.premium-uptime-value {
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
    letter-spacing: -0.3px;
}

/* Server Actions Card */
.premium-actions-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-actions-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

.premium-actions-body {
    padding: 20px;
}

.premium-actions-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
}

.premium-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-action-btn i {
    font-size: 16px;
}

.premium-action-stop {
    background: #ffffff;
    border-color: #ef4444;
    color: #ef4444;
}

.premium-action-stop:hover {
    background: #ef4444;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.premium-action-restart {
    background: #316FA2;
    border-color: #316FA2;
    color: #ffffff;
}

.premium-action-restart:hover {
    background: #2558a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-action-start {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.premium-action-start:hover {
    background: #059669;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .premium-resources-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .premium-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .premium-next-due {
        text-align: left;
    }
    
    .premium-usage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .premium-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 480px) {
    .premium-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-invoice-alert {
        padding: 16px;
    }
    
    .premium-accounting-body,
    .premium-internet-body,
    .premium-login-body,
    .premium-uptime-body,
    .premium-usage-body {
        padding: 20px;
    }
}

/* ===================================
   CONSOLE PAGE REDESIGN
   =================================== */

/* Console Main Card */
.premium-console-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.premium-console-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

/* Console Controls Section */
.premium-console-controls {
    padding: 24px;
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-bottom: 2px solid #e8f2f8;
}

.premium-console-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.premium-console-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #316FA2;
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.premium-console-btn:hover {
    background: #2558a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-console-btn i {
    font-size: 16px;
}

.premium-console-btn-secondary {
    background: #64748b;
    border-color: #64748b;
}

.premium-console-btn-secondary:hover {
    background: #475569;
    border-color: #475569;
}

/* Command Input Group */
.premium-command-group {
    margin-bottom: 0;
}

.premium-command-label {
    font-size: 14px;
    font-weight: 700;
    color: #316FA2;
    margin-bottom: 12px;
    display: block;
}

.premium-command-input-wrapper {
    display: flex;
    gap: 12px;
}

.premium-command-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e8f2f8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.premium-command-input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1);
}

.premium-command-input::placeholder {
    color: #94a3b8;
    font-family: inherit;
}

.premium-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #316FA2;
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.premium-send-btn:hover {
    background: #2558a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-send-btn i {
    font-size: 16px;
}

/* Console Display Area */
.premium-console-display {
    padding: 0;
    background: #1a1d23;
    position: relative;
}

.premium-console-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000000;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.premium-console-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Console Loading State */
.premium-console-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.premium-console-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(49, 111, 162, 0.2);
    border-top-color: #316FA2;
    border-radius: 50%;
    animation: premium-console-spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes premium-console-spin {
    to { transform: rotate(360deg); }
}

.premium-console-loading-text {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

/* Console Info Badge */
.premium-console-info {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    background: rgba(49, 111, 162, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-console-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: premium-pulse-dot 2s infinite;
}

@keyframes premium-pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Keyboard Shortcuts Help */
.premium-shortcuts-info {
    padding: 16px 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top: 2px solid #fbbf24;
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-shortcuts-icon {
    width: 32px;
    height: 32px;
    background: rgba(146, 64, 14, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-shortcuts-icon i {
    font-size: 18px;
    color: #92400e;
}

.premium-shortcuts-text {
    font-size: 12px;
    color: #92400e;
    font-weight: 600;
    line-height: 1.5;
}

.premium-shortcuts-text strong {
    font-weight: 700;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-console-controls {
        padding: 20px;
    }
    
    .premium-console-buttons {
        gap: 8px;
    }
    
    .premium-console-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .premium-command-input-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .premium-send-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-console-container {
        height: 400px;
    }
    
    .premium-console-info {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-console-controls {
        padding: 16px;
    }
    
    .premium-console-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .premium-console-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-console-container {
        height: 300px;
    }
    
    .premium-shortcuts-info {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   RESOURCE INCREASE PAGE REDESIGN
   =================================== */

/* Resource Increase Main Card */
.premium-increase-card {
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.premium-increase-card:hover {
    border-color: #316FA2;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.15);
    transform: translateY(-4px);
}

/* Form Body */
.premium-increase-body {
    padding: 32px;
}

/* Form Group */
.premium-increase-form-group {
    margin-bottom: 24px;
}

.premium-increase-label {
    font-size: 15px;
    font-weight: 700;
    color: #316FA2;
    margin-bottom: 12px;
    display: block;
    line-height: 1.6;
}

.premium-increase-input-wrapper {
    position: relative;
}

.premium-increase-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #316FA2;
    background: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.08);
}

.premium-increase-input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1), 0 4px 12px rgba(49, 111, 162, 0.15);
    transform: scale(1.02);
}

.premium-increase-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

/* Input Controls */
.premium-input-controls {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.premium-input-control-btn {
    flex: 1;
    padding: 12px;
    background: rgba(49, 111, 162, 0.1);
    border: 2px solid #316FA2;
    border-radius: 10px;
    color: #316FA2;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.premium-input-control-btn:hover {
    background: #316FA2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-input-control-btn i {
    font-size: 16px;
}

/* Price Helper Card */
.premium-price-helper {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    border: 2px solid #316FA2;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.2);
    position: relative;
    overflow: hidden;
}

.premium-price-helper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-price-helper-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    text-align: center;
}

.premium-price-helper-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.premium-price-helper-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-price-helper-icon i {
    font-size: 28px;
    color: #ffffff;
}

.premium-price-helper-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Approve Button */
.premium-approve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #10b981;
    border: 2px solid #10b981;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
}

.premium-approve-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.premium-approve-btn:hover::before {
    width: 400px;
    height: 400px;
}

.premium-approve-btn:hover {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.premium-approve-btn i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.premium-approve-btn span {
    position: relative;
    z-index: 1;
}

.premium-approve-btn:disabled {
    background: #94a3b8;
    border-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* Info Box */
.premium-increase-info {
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.premium-increase-info-icon {
    width: 24px;
    height: 24px;
    background: rgba(146, 64, 14, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-increase-info-icon i {
    font-size: 20px;
    color: #92400e;
}

.premium-increase-info-text {
    font-size: 13px;
    color: #92400e;
    font-weight: 600;
    line-height: 1.6;
}

/* Quick Select Buttons */
.premium-quick-select {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.premium-quick-select-btn {
    padding: 10px;
    background: #ffffff;
    border: 2px solid #e8f2f8;
    border-radius: 8px;
    color: #316FA2;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.premium-quick-select-btn:hover {
    background: rgba(49, 111, 162, 0.1);
    border-color: #316FA2;
    transform: scale(1.05);
}

.premium-quick-select-btn.active {
    background: #316FA2;
    border-color: #316FA2;
    color: #ffffff;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-increase-body {
        padding: 24px;
    }
    
    .premium-increase-input {
        padding: 14px 16px;
        font-size: 20px;
    }
    
    .premium-price-helper {
        padding: 20px;
    }
    
    .premium-price-helper-content {
        font-size: 15px;
    }
    
    .premium-approve-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .premium-quick-select {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 480px) {
    .premium-increase-body {
        padding: 20px;
    }
    
    .premium-increase-input {
        padding: 12px;
        font-size: 18px;
    }
    
    .premium-input-controls {
        flex-direction: column;
    }
    
    .premium-price-helper {
        padding: 16px;
    }
    
    .premium-quick-select {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FORMAT PAGE REDESIGN - NEW PREFIX
   =================================== */

/* Wrapper - Main Container */
.premium-format-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card Container */
.premium-format-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-format-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-format-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-format-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-format-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-format-title i {
    font-size: 24px;
}

/* Content Area */
.premium-format-content {
    padding: 40px;
}

/* Form Container */
.premium-format-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Form Group */
.premium-format-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-format-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Fields */
.premium-format-input {
    padding: 14px 18px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.06);
    font-family: inherit;
}

.premium-format-input:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-format-input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1);
}

/* Select */
.premium-format-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23316FA2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px;
}

/* Password Area */
.premium-format-password-area {
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-format-password-area .premium-format-input {
    flex: 1;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Generate Button */
.premium-format-generate-btn {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.premium-format-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.35);
}

.premium-format-generate-btn:active {
    transform: translateY(0);
}

/* Checkbox Container */
.premium-format-checkbox-box {
    padding: 16px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.premium-format-checkbox-box:hover {
    border-color: #d1dce6;
}

.premium-format-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.premium-format-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    accent-color: #316FA2;
    flex-shrink: 0;
}

.premium-format-checkbox:hover {
    border-color: #316FA2;
}

.premium-format-checkbox-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
}

/* Divider */
.premium-format-divider {
    height: 2px;
    background: #e8f2f8;
    margin: 8px 0;
}

/* Button Container */
.premium-format-button-container {
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

/* Submit Button */
.premium-format-submit {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.25);
    text-decoration: none;
    display: inline-block;
}

.premium-format-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.35);
    color: #ffffff;
}

.premium-format-submit:active:not(:disabled) {
    transform: translateY(0);
}

.premium-format-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner */
.premium-format-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-format-header {
        padding: 20px 24px;
    }

    .premium-format-content {
        padding: 28px;
    }

    .premium-format-title {
        font-size: 18px;
    }

    .premium-format-password-area {
        flex-direction: column;
        align-items: stretch;
    }

    .premium-format-password-area .premium-format-input {
        width: 100%;
    }

    .premium-format-generate-btn {
        width: 100%;
    }

    .premium-format-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .premium-format-header {
        padding: 16px;
    }

    .premium-format-content {
        padding: 20px;
    }

    .premium-format-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-format-title i {
        font-size: 20px;
    }

    .premium-format-label {
        font-size: 12px;
    }

    .premium-format-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .premium-format-generate-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .premium-format-submit {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===================================
   SERVER SETUP PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-setup-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-setup-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-setup-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-setup-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-setup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-setup-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-setup-title i {
    font-size: 24px;
}

/* Content */
.premium-setup-content {
    padding: 40px;
}

/* Tasks List */
.premium-setup-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.premium-setup-tasks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f8fafc;
    border-left: 4px solid transparent;
}

.premium-setup-tasks li i {
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Task Status - Completed */
.premium-setup-tasks li.maked {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    border-left-color: #10b981;
}

.premium-setup-tasks li.maked i {
    color: #10b981;
}

/* Task Status - Active */
.premium-setup-tasks li.active {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    border-left-color: #f59e0b;
    font-weight: 600;
}

.premium-setup-tasks li.active i {
    color: #f59e0b;
    animation: pulse 2s infinite;
}

/* Task Status - Waiting */
.premium-setup-tasks li.waiting {
    color: #64748b;
    background: rgba(100, 116, 139, 0.05);
    border-left-color: #64748b;
}

.premium-setup-tasks li.waiting i {
    color: #64748b;
}

/* Status Center */
.premium-setup-status-center {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}

.premium-setup-status-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    text-align: center;
}

.premium-setup-spinner {
    font-size: 32px;
    color: #f59e0b;
    animation: spin 2s linear infinite;
}

/* Divider */
.premium-setup-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #e8f2f8, transparent);
    margin: 32px 0;
    border: none;
}

/* Legend Container */
.premium-setup-legend {
    display: flex;
    justify-content: flex-end;
}

.premium-setup-legend-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.premium-setup-legend-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.premium-setup-legend-items li i {
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #f8fafc;
}

.premium-setup-legend-items li.maked i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.premium-setup-legend-items li.active i {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.premium-setup-legend-items li.waiting i {
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-setup-header {
        padding: 20px 24px;
    }

    .premium-setup-content {
        padding: 28px;
    }

    .premium-setup-title {
        font-size: 18px;
    }

    .premium-setup-legend {
        justify-content: flex-start;
    }

    .premium-setup-legend-items {
        grid-template-columns: 1fr;
    }

    .premium-setup-status-center {
        height: 160px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-setup-header {
        padding: 16px;
    }

    .premium-setup-content {
        padding: 20px;
    }

    .premium-setup-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-setup-title i {
        font-size: 20px;
    }

    .premium-setup-tasks li {
        font-size: 14px;
        padding: 10px 12px;
    }

    .premium-setup-status-text {
        font-size: 16px;
    }

    .premium-setup-spinner {
        font-size: 28px;
    }

    .premium-setup-legend-items li {
        font-size: 13px;
    }

    .premium-setup-divider {
        margin: 24px 0;
    }
}

/* ===================================
   IP MANAGEMENT PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-ip-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-ip-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-ip-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-ip-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.premium-ip-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.premium-ip-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-ip-title i {
    font-size: 24px;
}

.premium-ip-header-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
}

/* Create Button */
.premium-ip-create-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.premium-ip-create-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.premium-ip-create-btn i {
    font-size: 16px;
}

/* Content */
.premium-ip-content {
    padding: 32px 32px 32px 0;
}

/* Table */
.premium-ip-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.premium-ip-table thead {
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
    border-bottom: 2px solid #d1dce6;
}

.premium-ip-table thead tr {
    border: none;
}

.premium-ip-table thead th {
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
}

.premium-ip-table thead th:first-child {
    border-radius: 8px 0 0 0;
    padding-left: 16px;
}

.premium-ip-table thead th:last-child {
    border-radius: 0 8px 0 0;
    text-align: right;
    padding-right: 20px;
}

.premium-ip-table tbody tr {
    border-bottom: 1px solid #e8f2f8;
    transition: all 0.3s ease;
}

.premium-ip-table tbody tr:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e8f2f8;
}

.premium-ip-table tbody tr:last-child {
    border-bottom: none;
}

.premium-ip-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    text-align: left;
}

.premium-ip-table tbody td:first-child {
    padding-left: 16px;
    font-family: 'Courier New', monospace;
    color: #316FA2;
    font-weight: 600;
    text-align: left;
}

.premium-ip-table tbody td:last-child {
    padding-right: 20px;
    text-align: left;
}

/* Table Action Button */
.premium-ip-table .btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.2);
}

.premium-ip-table .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-ip-table .btn:active {
    transform: translateY(0);
}

/* Empty State */
.premium-ip-empty {
    text-align: center;
    padding: 60px 40px;
    color: #94a3b8;
}

.premium-ip-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.premium-ip-empty p {
    font-size: 16px;
    margin: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-ip-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .premium-ip-header-actions {
        width: 100%;
    }

    .premium-ip-create-btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .premium-ip-header {
        padding: 20px 24px;
    }

    .premium-ip-content {
        padding: 20px 20px 20px 0;
    }

    .premium-ip-title {
        font-size: 18px;
    }

    .premium-ip-table {
        font-size: 13px;
    }

    .premium-ip-table thead th {
        padding: 12px 8px;
        font-size: 12px;
    }

    .premium-ip-table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .premium-ip-table .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .premium-ip-table thead th:first-child,
    .premium-ip-table tbody td:first-child {
        padding-left: 12px;
    }

    .premium-ip-table thead th:last-child,
    .premium-ip-table tbody td:last-child {
        padding-right: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-ip-header {
        padding: 16px;
    }

    .premium-ip-content {
        padding: 16px 16px 16px 0;
    }

    .premium-ip-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-ip-title i {
        font-size: 20px;
    }

    .premium-ip-table {
        font-size: 12px;
    }

    .premium-ip-table thead th {
        padding: 10px 6px;
        font-size: 11px;
    }

    .premium-ip-table tbody td {
        padding: 10px 6px;
        font-size: 12px;
    }

    .premium-ip-table .btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .premium-ip-table thead th:first-child,
    .premium-ip-table tbody td:first-child {
        padding-left: 8px;
    }

    .premium-ip-table thead th:last-child,
    .premium-ip-table tbody td:last-child {
        padding-right: 8px;
    }

    .premium-ip-create-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .premium-ip-empty {
        padding: 40px 20px;
    }

    .premium-ip-empty i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .premium-ip-empty p {
        font-size: 14px;
    }
}

/* ===================================
   RDNS CREATE PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-rdns-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-rdns-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-rdns-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-rdns-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-rdns-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-rdns-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-rdns-title i {
    font-size: 24px;
}

/* Content */
.premium-rdns-content {
    padding: 40px;
}

/* Form */
.premium-rdns-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Form Group */
.premium-rdns-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-rdns-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input/Select */
.premium-rdns-input,
.premium-rdns-select {
    padding: 14px 18px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.06);
    font-family: inherit;
}

.premium-rdns-input:hover,
.premium-rdns-select:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-rdns-input:focus,
.premium-rdns-select:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1);
}

/* Select Dropdown */
.premium-rdns-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23316FA2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px;
    cursor: pointer;
}

/* Number Input */
.premium-rdns-input[type="number"] {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Divider */
.premium-rdns-divider {
    height: 2px;
    background: #e8f2f8;
    margin: 12px 0;
}

/* Button Container */
.premium-rdns-button-container {
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

/* Submit Button */
.premium-rdns-submit {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.25);
    text-decoration: none;
    display: inline-block;
}

.premium-rdns-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.35);
    color: #ffffff;
}

.premium-rdns-submit:active:not(:disabled) {
    transform: translateY(0);
}

.premium-rdns-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner */
.premium-rdns-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-rdns-header {
        padding: 20px 24px;
    }

    .premium-rdns-content {
        padding: 28px;
    }

    .premium-rdns-title {
        font-size: 18px;
    }

    .premium-rdns-form {
        gap: 20px;
    }

    .premium-rdns-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .premium-rdns-header {
        padding: 16px;
    }

    .premium-rdns-content {
        padding: 20px;
    }

    .premium-rdns-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-rdns-title i {
        font-size: 20px;
    }

    .premium-rdns-label {
        font-size: 12px;
    }

    .premium-rdns-input,
    .premium-rdns-select {
        font-size: 14px;
        padding: 12px 14px;
    }

    .premium-rdns-form {
        gap: 16px;
    }

    .premium-rdns-submit {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===================================
   RDNS EDIT PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-rdns-edit-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-rdns-edit-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-rdns-edit-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-rdns-edit-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.premium-rdns-edit-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.premium-rdns-edit-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-rdns-edit-title i {
    font-size: 24px;
}

.premium-rdns-edit-header-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
}

/* Back Button */
.premium-rdns-edit-back-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.premium-rdns-edit-back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.premium-rdns-edit-back-btn i {
    font-size: 16px;
}

/* Content */
.premium-rdns-edit-content {
    padding: 40px;
}

/* Form */
.premium-rdns-edit-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Form Group */
.premium-rdns-edit-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-rdns-edit-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input/Select */
.premium-rdns-edit-input,
.premium-rdns-edit-select {
    padding: 14px 18px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.06);
    font-family: inherit;
}

.premium-rdns-edit-input:hover,
.premium-rdns-edit-select:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-rdns-edit-input:focus,
.premium-rdns-edit-select:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1);
}

/* Select Dropdown */
.premium-rdns-edit-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23316FA2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px;
    cursor: pointer;
}

/* Number Input */
.premium-rdns-edit-input[type="number"] {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Divider */
.premium-rdns-edit-divider {
    height: 2px;
    background: #e8f2f8;
    margin: 12px 0;
}

/* Button Container */
.premium-rdns-edit-button-container {
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

/* Submit Button */
.premium-rdns-edit-submit {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.25);
    text-decoration: none;
    display: inline-block;
}

.premium-rdns-edit-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.35);
    color: #ffffff;
}

.premium-rdns-edit-submit:active:not(:disabled) {
    transform: translateY(0);
}

.premium-rdns-edit-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner */
.premium-rdns-edit-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-rdns-edit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .premium-rdns-edit-header-actions {
        width: 100%;
    }

    .premium-rdns-edit-back-btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .premium-rdns-edit-header {
        padding: 20px 24px;
    }

    .premium-rdns-edit-content {
        padding: 28px;
    }

    .premium-rdns-edit-title {
        font-size: 18px;
    }

    .premium-rdns-edit-form {
        gap: 20px;
    }

    .premium-rdns-edit-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .premium-rdns-edit-header {
        padding: 16px;
    }

    .premium-rdns-edit-content {
        padding: 20px;
    }

    .premium-rdns-edit-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-rdns-edit-title i {
        font-size: 20px;
    }

    .premium-rdns-edit-label {
        font-size: 12px;
    }

    .premium-rdns-edit-input,
    .premium-rdns-edit-select {
        font-size: 14px;
        padding: 12px 14px;
    }

    .premium-rdns-edit-form {
        gap: 16px;
    }

    .premium-rdns-edit-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .premium-rdns-edit-back-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ===================================
   RDNS MANAGEMENT PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-rdns-manage-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card Container */
.premium-rdns-manage-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 24px;
}

.premium-rdns-manage-card:last-child {
    margin-bottom: 0;
}

.premium-rdns-manage-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-rdns-manage-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 20px 28px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-rdns-manage-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-rdns-manage-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-rdns-manage-title i {
    font-size: 20px;
}

.premium-rdns-manage-ip {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Content */
.premium-rdns-manage-content {
    padding: 0;
}

/* Table */
.premium-rdns-manage-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.premium-rdns-manage-table thead {
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
    border-bottom: 2px solid #d1dce6;
}

.premium-rdns-manage-table thead tr {
    border: none;
}

.premium-rdns-manage-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
}

.premium-rdns-manage-table thead th:first-child {
    border-radius: 0 0 0 0;
    padding-left: 16px;
}

.premium-rdns-manage-table thead th:last-child {
    text-align: right;
    padding-right: 16px;
}

.premium-rdns-manage-table tbody tr {
    border-bottom: 1px solid #e8f2f8;
    transition: all 0.3s ease;
}

.premium-rdns-manage-table tbody tr:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e8f2f8;
}

.premium-rdns-manage-table tbody tr:last-child {
    border-bottom: none;
}

.premium-rdns-manage-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    vertical-align: middle;
}

.premium-rdns-manage-table tbody td:first-child {
    padding-left: 16px;
}

.premium-rdns-manage-table tbody td:last-child {
    padding-right: 16px;
    text-align: right;
}

/* Status Badge */
.premium-rdns-manage-table .premium-rdns-status-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.premium-rdns-status-btn.btn-pending {
    background: #fef3c7;
    color: #92400e;
}

.premium-rdns-status-btn.btn-active {
    background: #dcfce7;
    color: #166534;
}

.premium-rdns-status-btn.btn-failed {
    background: #fee2e2;
    color: #991b1b;
}

/* Action Buttons */
.premium-rdns-manage-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
}

.premium-rdns-manage-table .btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.premium-rdns-manage-table .btn-edit {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.2);
}

.premium-rdns-manage-table .btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-rdns-manage-table .btn-delete {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.premium-rdns-manage-table .btn-delete:hover {
    background: #fecaca;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

/* Empty State */
.premium-rdns-manage-empty {
    padding: 40px;
    text-align: center;
    color: #94a3b8;
}

.premium-rdns-manage-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 12px;
    display: block;
    opacity: 0.5;
}

.premium-rdns-manage-empty p {
    font-size: 14px;
    margin: 0;
}

/* Spinner */
.premium-rdns-manage-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 1024px) {
    .premium-rdns-manage-table {
        font-size: 13px;
    }

    .premium-rdns-manage-table thead th {
        padding: 12px 12px;
        font-size: 11px;
    }

    .premium-rdns-manage-table tbody td {
        padding: 12px;
    }

    .premium-rdns-manage-table .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .premium-rdns-manage-actions {
        gap: 4px;
    }
}

@media only screen and (max-width: 768px) {
    .premium-rdns-manage-header {
        padding: 16px 20px;
    }

    .premium-rdns-manage-content {
        overflow-x: auto;
    }

    .premium-rdns-manage-table {
        font-size: 12px;
    }

    .premium-rdns-manage-table thead th {
        padding: 10px 8px;
        font-size: 10px;
    }

    .premium-rdns-manage-table tbody td {
        padding: 10px 8px;
    }

    .premium-rdns-manage-table .btn {
        padding: 6px 8px;
        font-size: 11px;
    }

    .premium-rdns-manage-title {
        font-size: 16px;
    }

    .premium-rdns-manage-card {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-rdns-manage-header {
        padding: 14px 16px;
    }

    .premium-rdns-manage-title {
        font-size: 14px;
        gap: 8px;
    }

    .premium-rdns-manage-title i {
        font-size: 18px;
    }

    .premium-rdns-manage-table {
        font-size: 11px;
    }

    .premium-rdns-manage-table thead th {
        padding: 8px 6px;
        font-size: 9px;
    }

    .premium-rdns-manage-table tbody td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .premium-rdns-manage-table .btn {
        padding: 5px 8px;
        font-size: 10px;
    }

    .premium-rdns-manage-actions {
        flex-direction: column;
        gap: 4px;
    }

    .premium-rdns-manage-actions .btn {
        width: 100%;
        text-align: center;
    }

    .premium-rdns-manage-card {
        margin-bottom: 12px;
        border-radius: 12px;
    }
}

/* ===================================
   PASSWORD CHANGE PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-password-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-password-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-password-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-password-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-password-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-password-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-password-title i {
    font-size: 24px;
}

/* Content */
.premium-password-content {
    padding: 40px;
}

/* Form */
.premium-password-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Form Group */
.premium-password-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-password-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-password-label .text-danger {
    color: #ef4444;
    margin-right: 4px;
}

/* Password Input Area */
.premium-password-area {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.premium-password-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2332;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(49, 111, 162, 0.06);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.premium-password-input:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-password-input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1);
}

/* Generate Button */
.premium-password-generate-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.premium-password-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.35);
}

.premium-password-generate-btn:active {
    transform: translateY(0);
}

.premium-password-generate-btn i {
    font-size: 16px;
}

/* Info Text */
.premium-password-info {
    padding: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    border: 2px solid #fbbf24;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.premium-password-info i {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Divider */
.premium-password-divider {
    height: 2px;
    background: #e8f2f8;
    margin: 12px 0;
}

/* Button Container */
.premium-password-button-container {
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

/* Submit Button */
.premium-password-submit {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.25);
    text-decoration: none;
    display: inline-block;
}

.premium-password-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.35);
    color: #ffffff;
}

.premium-password-submit:active:not(:disabled) {
    transform: translateY(0);
}

.premium-password-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner */
.premium-password-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inline Alert - Above Info Text */
.premium-alert-inline {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.premium-alert-inline-show {
    opacity: 1;
    transform: translateY(0);
}

.premium-alert-inline i {
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-alert-success {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border: 2px solid #86efac;
    color: #15803d;
}

.premium-alert-success i {
    color: #15803d;
}

.premium-alert-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
    color: #991b1b;
}

.premium-alert-error i {
    color: #991b1b;
}

.premium-alert-inline-text {
    flex: 1;
}

.premium-alert-inline-message {
    display: block;
    line-height: 1.5;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-password-header {
        padding: 20px 24px;
    }

    .premium-password-content {
        padding: 28px;
    }

    .premium-password-title {
        font-size: 18px;
    }

    .premium-password-area {
        flex-direction: column;
        align-items: stretch;
    }

    .premium-password-input {
        width: 100%;
    }

    .premium-password-generate-btn {
        width: 100%;
    }

    .premium-password-form {
        gap: 20px;
    }

    .premium-password-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .premium-password-header {
        padding: 16px;
    }

    .premium-password-content {
        padding: 20px;
    }

    .premium-password-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-password-title i {
        font-size: 20px;
    }

    .premium-password-label {
        font-size: 12px;
    }

    .premium-password-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .premium-password-generate-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .premium-password-form {
        gap: 16px;
    }

    .premium-password-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .premium-password-info {
        font-size: 13px;
        padding: 12px;
    }

    .premium-password-info i {
        font-size: 16px;
    }
}

/* ===================================
   LOGS PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-logs-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-logs-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-logs-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-logs-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-logs-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-logs-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-logs-title i {
    font-size: 24px;
}

/* Content */
.premium-logs-content {
    padding: 0;
}

/* Table */
.premium-logs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.premium-logs-table thead {
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
    border-bottom: 2px solid #d1dce6;
}

.premium-logs-table thead tr {
    border: none;
}

.premium-logs-table thead th {
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
}

.premium-logs-table thead th:first-child {
    border-radius: 0;
    padding-left: 20px;
}

.premium-logs-table thead th:last-child {
    text-align: right;
    padding-right: 20px;
}

.premium-logs-table tbody tr {
    border-bottom: 1px solid #e8f2f8;
    transition: all 0.3s ease;
}

.premium-logs-table tbody tr:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e8f2f8;
}

.premium-logs-table tbody tr:last-child {
    border-bottom: none;
}

.premium-logs-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    vertical-align: middle;
}

.premium-logs-table tbody td:first-child {
    padding-left: 20px;
    color: #316FA2;
    font-weight: 700;
    font-size: 15px;
}

.premium-logs-table tbody td:last-child {
    padding-right: 20px;
    text-align: right;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

/* Log Description */
.premium-logs-description {
    color: #1a2332;
    line-height: 1.5;
    word-break: break-word;
}

/* Empty State */
.premium-logs-empty {
    padding: 60px 40px;
    text-align: center;
    color: #94a3b8;
}

.premium-logs-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.premium-logs-empty p {
    font-size: 16px;
    margin: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-logs-header {
        padding: 20px 24px;
    }

    .premium-logs-content {
        overflow-x: auto;
    }

    .premium-logs-title {
        font-size: 18px;
    }

    .premium-logs-table {
        font-size: 13px;
    }

    .premium-logs-table thead th {
        padding: 12px;
        font-size: 12px;
    }

    .premium-logs-table tbody td {
        padding: 12px;
        font-size: 13px;
    }

    .premium-logs-table tbody td:first-child {
        padding-left: 12px;
    }

    .premium-logs-table tbody td:last-child {
        padding-right: 12px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-logs-header {
        padding: 16px;
    }

    .premium-logs-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-logs-title i {
        font-size: 20px;
    }

    .premium-logs-table {
        font-size: 12px;
    }

    .premium-logs-table thead th {
        padding: 10px 8px;
        font-size: 11px;
    }

    .premium-logs-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .premium-logs-table tbody td:first-child {
        padding-left: 8px;
        font-size: 13px;
    }

    .premium-logs-table tbody td:last-child {
        padding-right: 8px;
        font-size: 11px;
    }

    .premium-logs-empty {
        padding: 40px 20px;
    }

    .premium-logs-empty i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .premium-logs-empty p {
        font-size: 14px;
    }
}

/* ===================================
   SNAPSHOTS PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-snapshot-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-snapshot-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-snapshot-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-snapshot-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.premium-snapshot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.premium-snapshot-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-snapshot-title i {
    font-size: 24px;
}

.premium-snapshot-header-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
}

/* Create Snapshot Button */
.premium-snapshot-create-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.premium-snapshot-create-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.premium-snapshot-create-btn i {
    font-size: 16px;
}

/* Content */
.premium-snapshot-content {
    padding: 0;
}

/* Table */
.premium-snapshot-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.premium-snapshot-table thead {
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
    border-bottom: 2px solid #d1dce6;
}

.premium-snapshot-table thead tr {
    border: none;
}

.premium-snapshot-table thead th {
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
}

.premium-snapshot-table thead th:first-child {
    padding-left: 20px;
}

.premium-snapshot-table thead th:last-child {
    text-align: right;
    padding-right: 20px;
}

.premium-snapshot-table tbody tr {
    border-bottom: 1px solid #e8f2f8;
    transition: all 0.3s ease;
}

.premium-snapshot-table tbody tr:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e8f2f8;
}

.premium-snapshot-table tbody tr:last-child {
    border-bottom: none;
}

.premium-snapshot-table tbody td {
    padding: 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    vertical-align: middle;
}

.premium-snapshot-table tbody td:first-child {
    padding-left: 20px;
    font-weight: 700;
    color: #316FA2;
}

.premium-snapshot-table tbody td:last-child {
    padding-right: 20px;
    text-align: right;
}

/* Action Buttons Container */
.premium-snapshot-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
}

/* Deploy Button */
.premium-snapshot-deploy-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.2);
    white-space: nowrap;
}

.premium-snapshot-deploy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
}

.premium-snapshot-deploy-btn:active {
    transform: translateY(0);
}

.premium-snapshot-deploy-btn i {
    font-size: 14px;
}

/* Delete Button */
.premium-snapshot-delete-btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.premium-snapshot-delete-btn:hover {
    background: #fecaca;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.premium-snapshot-delete-btn:active {
    transform: translateY(0);
}

.premium-snapshot-delete-btn i {
    font-size: 14px;
}

/* Empty State */
.premium-snapshot-empty {
    padding: 60px 40px;
    text-align: center;
    color: #94a3b8;
}

.premium-snapshot-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.premium-snapshot-empty-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.premium-snapshot-empty-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
}

.premium-snapshot-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 111, 162, 0.35);
    color: #ffffff !important;
    text-decoration: none !important;
}

.premium-snapshot-empty-btn:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.premium-snapshot-empty-btn:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

.premium-snapshot-empty-btn:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Spinner */
.premium-snapshot-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-snapshot-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .premium-snapshot-header-actions {
        width: 100%;
    }

    .premium-snapshot-create-btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .premium-snapshot-header {
        padding: 20px 24px;
    }

    .premium-snapshot-content {
        overflow-x: auto;
    }

    .premium-snapshot-title {
        font-size: 18px;
    }

    .premium-snapshot-table {
        font-size: 13px;
    }

    .premium-snapshot-table thead th {
        padding: 12px;
        font-size: 12px;
    }

    .premium-snapshot-table tbody td {
        padding: 12px;
        font-size: 13px;
    }

    .premium-snapshot-table tbody td:first-child {
        padding-left: 12px;
    }

    .premium-snapshot-table tbody td:last-child {
        padding-right: 12px;
    }

    .premium-snapshot-actions {
        gap: 6px;
    }

    .premium-snapshot-deploy-btn,
    .premium-snapshot-delete-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-snapshot-header {
        padding: 16px;
    }

    .premium-snapshot-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-snapshot-title i {
        font-size: 20px;
    }

    .premium-snapshot-table {
        font-size: 12px;
    }

    .premium-snapshot-table thead th {
        padding: 10px 8px;
        font-size: 11px;
    }

    .premium-snapshot-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .premium-snapshot-table tbody td:first-child {
        padding-left: 8px;
    }

    .premium-snapshot-table tbody td:last-child {
        padding-right: 8px;
    }

    .premium-snapshot-actions {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }

    .premium-snapshot-deploy-btn,
    .premium-snapshot-delete-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 12px;
    }

    .premium-snapshot-empty {
        padding: 40px 20px;
    }

    .premium-snapshot-empty i {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .premium-snapshot-empty-text {
        font-size: 14px;
    }

    .premium-snapshot-empty-btn {
        width: 100%;
    }
}

/* ===================================
   INVOICES PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-invoices-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-invoices-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 24px;
}

.premium-invoices-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-invoices-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-invoices-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-invoices-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-invoices-title i {
    font-size: 24px;
}

/* Content */
.premium-invoices-content {
    padding: 0;
    overflow-x: auto;
}

/* Table */
.premium-invoices-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.premium-invoices-table thead {
    background: linear-gradient(135deg, #f0f7fb 0%, #e8f2f8 100%);
    border-bottom: 2px solid #d1dce6;
}

.premium-invoices-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-invoices-table tbody tr {
    border-bottom: 1px solid #e8f2f8;
    transition: all 0.3s ease;
}

.premium-invoices-table tbody tr:hover {
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e8f2f8;
}

.premium-invoices-table tbody tr:last-child {
    border-bottom: none;
}

.premium-invoices-table tbody td {
    padding: 14px 12px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    vertical-align: middle;
}

/* Invoice number cell */
.premium-invoices-table tbody td:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-invoice-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #316FA2;
    flex-shrink: 0;
}

.premium-invoice-number {
    color: #316FA2;
    font-weight: 700;
}

/* Invoice details cell */
.premium-invoice-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-invoice-name {
    color: #1a2332;
    font-weight: 700;
}

.premium-invoice-description {
    color: #64748b;
    font-size: 13px;
}

/* Status badge */
.premium-invoice-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.premium-invoice-status.success {
    background: #dcfce7;
    color: #166534;
}

.premium-invoice-status.warning {
    background: #fef3c7;
    color: #92400e;
}

.premium-invoice-status.danger {
    background: #fee2e2;
    color: #991b1b;
}

/* Action buttons */
.premium-invoices-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.premium-invoices-actions .btn {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.premium-invoices-actions .btn-pay {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.premium-invoices-actions .btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: #ffffff !important;
}

.premium-invoices-actions .btn-view {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.2);
}

.premium-invoices-actions .btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
    color: #ffffff !important;
}

.premium-invoices-actions .btn-invoice {
    background: #dcfce7;
    color: #166534 !important;
    border: 1px solid #bbf7d0;
}

.premium-invoices-actions .btn-invoice:hover {
    background: #bbf7d0;
    transform: translateY(-2px);
    color: #166534 !important;
}

/* Info section */
.premium-invoices-info {
    padding: 20px 32px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border-top: 2px solid #e8f2f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.premium-invoices-info-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
}

.premium-invoices-info-text b {
    color: #316FA2;
    font-weight: 700;
}

.premium-invoices-merge-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.2);
}

.premium-invoices-merge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.3);
    color: #ffffff !important;
}

.premium-invoices-merge-btn:visited {
    color: #ffffff !important;
}

/* Empty state */
.premium-invoices-empty {
    padding: 60px 40px;
    text-align: center;
    color: #94a3b8;
}

.premium-invoices-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
    display: block;
    opacity: 0.5;
}

.premium-invoices-empty p {
    font-size: 16px;
    margin: 0;
}

/* Pagination card */
.premium-invoices-pagination {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    padding: 24px;
    text-align: center;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-invoices-header {
        padding: 20px 24px;
    }

    .premium-invoices-title {
        font-size: 18px;
    }

    .premium-invoices-table thead th {
        padding: 12px 8px;
        font-size: 11px;
    }

    .premium-invoices-table tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .premium-invoices-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px;
    }

    .premium-invoices-merge-btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .premium-invoices-header {
        padding: 16px;
    }

    .premium-invoices-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-invoices-title i {
        font-size: 20px;
    }

    .premium-invoices-table thead th {
        padding: 10px 6px;
        font-size: 10px;
    }

    .premium-invoices-table tbody td {
        padding: 10px 6px;
        font-size: 12px;
    }

    .premium-invoices-actions {
        flex-direction: column;
        gap: 4px;
    }

    .premium-invoices-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .premium-invoices-info {
        padding: 12px 16px;
    }

    .premium-invoices-info-text {
        font-size: 12px;
    }

    .premium-invoices-merge-btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* ===================================
   PAYMENT METHOD PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-payment-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Card */
.premium-payment-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 24px;
}

.premium-payment-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-payment-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.premium-payment-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-payment-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-payment-title i {
    font-size: 24px;
}

/* Content */
.premium-payment-content {
    padding: 32px;
}

/* Form Group */
.premium-payment-form-group {
    margin-bottom: 24px;
}

/* Payment Options Container */
.premium-payment-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Payment Option Card */
.payment-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border: 2px solid #e8f2f8;
    background: #ffffff;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Style payment info section */
.payment-options .info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    margin-right: 20px;
}

/* Logo container */
.payment-options .info .logo {
    flex-shrink: 0;
}

/* Logo images - 50x50px */
.payment-options .info .logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Text styling */
.payment-options .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-options .text span:first-child {
    font-weight: 700;
    font-size: 16px;
    color: #1a2332;
}

.payment-options .text span:last-child {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    opacity: 0.7;
}

/* Price styling */
.payment-options .price {
    font-weight: 700;
    font-size: 20px;
    color: #10b981;
    text-align: right;
    min-width: 140px;
    padding-left: 20px;
    padding-right: 40px;
    border-left: 2px solid #e8f2f8;
    flex-shrink: 0;
}

.payment-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.payment-options:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.payment-options:hover::before {
    opacity: 1;
}

.payment-options.active {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.payment-options.active::after {
    content: '✓';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Button Container */
.premium-payment-button-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* Pay Button */
.premium-payment-btn {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-payment-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-payment-btn:active:not(:disabled) {
    transform: translateY(0);
}

.premium-payment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.premium-payment-btn i {
    font-size: 18px;
}

/* Data Content */
.premium-payment-data {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    padding: 24px;
    min-height: 100px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-payment-header {
        padding: 20px 24px;
    }

    .premium-payment-content {
        padding: 24px;
    }

    .premium-payment-title {
        font-size: 18px;
    }

    .payment-options {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .payment-method-info {
        width: 100%;
        gap: 16px;
    }

    .payment-price {
        width: 100%;
        text-align: left;
        border-left: none;
        border-top: 2px solid #e8f2f8;
        padding-left: 0;
        padding-top: 16px;
        min-width: auto;
    }

    .payment-icon-box {
        width: 70px;
        height: 70px;
    }

    .payment-icon-box i {
        font-size: 36px;
    }

    .premium-payment-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-payment-header {
        padding: 16px;
    }

    .premium-payment-content {
        padding: 16px;
    }

    .premium-payment-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-payment-title i {
        font-size: 20px;
    }

    .payment-options {
        padding: 16px;
        gap: 12px;
    }

    .payment-icon-box {
        width: 60px;
        height: 60px;
    }

    .payment-icon-box i {
        font-size: 30px;
    }

    .payment-name {
        font-size: 15px;
    }

    .payment-description {
        font-size: 12px;
    }

    .payment-price {
        font-size: 18px;
    }

    .premium-payment-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .premium-payment-button-container {
        margin-top: 24px;
    }

    .premium-payment-options {
        gap: 12px;
    }
}

/* ===================================
   CREDIT CARD PAYMENT PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-card-payment-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-card-payment-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 24px;
}

.premium-card-payment-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-card-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.premium-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-card-title {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.premium-card-header-action {
    position: relative;
    z-index: 1;
}

.premium-card-header .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-card-header .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Content */
.premium-card-content {
    padding: 32px;
}

/* Form Group */
.premium-form-group {
    margin-bottom: 24px;
}

/* Saved Cards Section */
.premium-saved-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

/* Card Item */
.premium-card-item {
    padding: 16px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 111, 162, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.premium-card-item:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-card-item:hover::before {
    opacity: 1;
}

.premium-card-item.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.premium-card-item.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.premium-card-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.premium-card-item-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a2332;
}

.premium-card-item-delete {
    color: #ef4444;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.premium-card-item-delete:hover {
    color: #dc2626;
}

.premium-card-item-number {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.premium-card-item-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.premium-card-item-logos img {
    max-height: 24px;
    object-fit: contain;
}

/* Add Card Button */
.premium-add-card-btn {
    padding: 16px;
    border: 2px dashed #d1dce6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #64748b;
}

.premium-add-card-btn:hover {
    border-color: #316FA2;
    background: #f0f7fb;
    color: #316FA2;
}

.premium-add-card-btn i {
    font-size: 28px;
}

.premium-add-card-btn span {
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

/* Invoice Summary Table */
.premium-invoice-summary {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.premium-invoice-summary table {
    width: 100%;
    border-collapse: collapse;
}

.premium-invoice-summary thead {
    background: linear-gradient(135deg, #e8f2f8 0%, #d1dce6 100%);
}

.premium-invoice-summary th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-invoice-summary td {
    padding: 12px 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    border-bottom: 1px solid #e8f2f8;
}

.premium-invoice-summary tbody tr:last-child td {
    border-bottom: none;
}

.premium-invoice-summary tbody tr:hover {
    background: #f8fafc;
}

.premium-invoice-item-name {
    font-weight: 600;
    color: #316FA2;
}

.premium-invoice-total-row td {
    background: linear-gradient(135deg, #e8f2f8 0%, #f0f7fb 100%);
    font-weight: 700;
    font-size: 15px;
    color: #10b981;
    padding: 16px;
}

/* Payment Button */
.premium-pay-button-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.premium-pay-btn {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-pay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.premium-pay-btn i {
    font-size: 18px;
}

/* Spinner */
.premium-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
}

/* Data Content */
.premium-data-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .premium-card-header-action {
        width: 100%;
    }

    .premium-card-header .btn {
        width: 100%;
        justify-content: center;
    }

    .premium-saved-cards {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .premium-card-header {
        padding: 20px 24px;
    }

    .premium-card-content {
        padding: 24px;
    }

    .premium-card-title {
        font-size: 18px;
    }

    .premium-saved-cards {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .premium-invoice-summary th,
    .premium-invoice-summary td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .premium-pay-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-card-header {
        padding: 16px;
    }

    .premium-card-content {
        padding: 16px;
    }

    .premium-card-title {
        font-size: 16px;
    }

    .premium-saved-cards {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .premium-card-item {
        padding: 12px;
    }

    .premium-card-item-name {
        font-size: 12px;
    }

    .premium-card-item-number {
        font-size: 11px;
    }

    .premium-card-item-logos img {
        max-height: 20px;
    }

    .premium-invoice-summary th,
    .premium-invoice-summary td {
        padding: 8px 10px;
        font-size: 11px;
    }

    .premium-pay-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .premium-form-group {
        margin-bottom: 16px;
    }
}

/* ===================================
   CREDIT CARD PAYMENT PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-cc-payment-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-cc-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 24px;
}

.premium-cc-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-cc-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-cc-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-cc-header h3 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.premium-cc-header-btn {
    position: relative;
    z-index: 1;
}

.premium-cc-header .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-cc-header .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Content */
.premium-cc-content {
    padding: 32px;
}

/* Saved Cards Section */
.premium-cc-saved-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

/* Card Item */
.premium-cc-card-item {
    padding: 16px;
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-cc-card-item:hover {
    border-color: #d1dce6;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
}

.premium-cc-card-item.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.premium-cc-card-item.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.premium-cc-card-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.premium-cc-card-item-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a2332;
}

.premium-cc-card-item-delete {
    color: #ef4444;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.premium-cc-card-item-delete:hover {
    color: #dc2626;
}

.premium-cc-card-item-number {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.premium-cc-card-item-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.premium-cc-card-item-logos img {
    max-height: 24px;
    object-fit: contain;
}

/* Add Card Button */
.premium-cc-add-card-btn {
    padding: 16px;
    border: 2px dashed #d1dce6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #64748b;
    text-align: center;
}

.premium-cc-add-card-btn:hover {
    border-color: #316FA2;
    background: #f0f7fb;
    color: #316FA2;
}

.premium-cc-add-card-btn i {
    font-size: 28px;
}

.premium-cc-add-card-btn span {
    font-weight: 600;
    font-size: 13px;
}

/* Card Input Area */
.premium-cc-input-area {
    margin-bottom: 32px;
}

.premium-cc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.premium-cc-form-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-cc-form-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form Group */
.premium-cc-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.premium-cc-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-cc-form-group input {
    padding: 12px 16px;
    border: 2px solid #e8f2f8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.premium-cc-form-group input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 3px rgba(49, 111, 162, 0.1);
}

/* Card Visual */
.premium-cc-visual {
    perspective: 1000px;
    width: 100%;
}

.premium-cc-creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    cursor: pointer;
    position: relative;
    height: 250px;
}

.premium-cc-creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.premium-cc-creditcard .front,
.premium-cc-creditcard .back {
    position: absolute;
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    top: 0;
    left: 0;
}

.premium-cc-creditcard .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.premium-cc-creditcard svg {
    width: 100%;
    height: auto;
    -webkit-box-shadow: 1px 5px 6px 0px rgba(0,0,0,0.3);
    box-shadow: 1px 5px 6px 0px rgba(0,0,0,0.3);
    border-radius: 22px;
    display: block;
}

/* Card Colors */
.premium-cc-creditcard .black {
    fill: #1a1a1a;
}

.premium-cc-creditcard .lightblue {
    fill: #03A9F4;
}

.premium-cc-creditcard .lightbluedark {
    fill: #0288D1;
}

.premium-cc-creditcard .red {
    fill: #316FA2;
}

.premium-cc-creditcard .reddark {
    fill: #2558a0;
}

.premium-cc-creditcard .purple {
    fill: #ab47bc;
}

.premium-cc-creditcard .purpledark {
    fill: #7b1fa2;
}

.premium-cc-creditcard .cyan {
    fill: #26c6da;
}

.premium-cc-creditcard .cyandark {
    fill: #0097a7;
}

.premium-cc-creditcard .green {
    fill: #66bb6a;
}

.premium-cc-creditcard .greendark {
    fill: #388e3c;
}

.premium-cc-creditcard .lime {
    fill: #d4e157;
}

.premium-cc-creditcard .limedark {
    fill: #afb42b;
}

.premium-cc-creditcard .yellow {
    fill: #ffeb3b;
}

.premium-cc-creditcard .yellowdark {
    fill: #f9a825;
}

.premium-cc-creditcard .orange {
    fill: #ff9800;
}

.premium-cc-creditcard .orangedark {
    fill: #ef6c00;
}

.premium-cc-creditcard .grey {
    fill: #bdbdbd;
}

.premium-cc-creditcard .greydark {
    fill: #616161;
}

/* Front of card */
.premium-cc-creditcard #svgname {
    text-transform: uppercase;
}

.premium-cc-creditcard #cardfront .st2 {
    fill: #FFFFFF;
}

.premium-cc-creditcard #cardfront .st3 {
    font-weight: 600;
}

.premium-cc-creditcard #cardfront .st4 {
    font-size: 54.7817px;
}

.premium-cc-creditcard #cardfront .st5 {
    font-weight: 400;
}

.premium-cc-creditcard #cardfront .st6 {
    font-size: 33.1112px;
}

.premium-cc-creditcard #cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

.premium-cc-creditcard #cardfront .st8 {
    font-size: 24px;
}

.premium-cc-creditcard #cardfront .st9 {
    font-size: 36.5498px;
}

.premium-cc-creditcard #cardfront .st10 {
    font-weight: 300;
}

.premium-cc-creditcard #cardfront .st11 {
    font-size: 16.1716px;
}

.premium-cc-creditcard #cardfront .st12 {
    fill: #4C4C4C;
}

/* Back of card */
.premium-cc-creditcard #cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

.premium-cc-creditcard #cardback .st2 {
    fill: #111111;
}

.premium-cc-creditcard #cardback .st3 {
    fill: #F2F2F2;
}

.premium-cc-creditcard #cardback .st4 {
    fill: #D8D2DB;
}

.premium-cc-creditcard #cardback .st5 {
    fill: #C4C4C4;
}

.premium-cc-creditcard #cardback .st6 {
    font-weight: 400;
}

.premium-cc-creditcard #cardback .st7 {
    font-size: 27px;
}

.premium-cc-creditcard #cardback .st8 {
    opacity: 0.6;
}

.premium-cc-creditcard #cardback .st9 {
    fill: #FFFFFF;
}

.premium-cc-creditcard #cardback .st10 {
    font-size: 24px;
}

.premium-cc-creditcard #cardback .st11 {
    fill: #EAEAEA;
}

.premium-cc-creditcard #cardback .st13 {
    font-size: 37.769px;
}

/* Save Card Section */
.premium-cc-save-section {
    margin-top: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e8f2f8;
}

.premium-cc-save-section > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Custom Checkbox */
.premium-cc-save-section input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1dce6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    flex-shrink: 0;
    position: relative;
}

.premium-cc-save-section input[type="checkbox"]:hover {
    border-color: #316FA2;
    box-shadow: 0 0 0 3px rgba(49, 111, 162, 0.1);
}

.premium-cc-save-section input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.premium-cc-save-section input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.premium-cc-save-section label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.premium-cc-save-alias {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.premium-cc-save-alias.row-active {
    max-height: 80px;
    margin-top: 16px;
}

.premium-cc-save-alias label {
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-cc-save-alias input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.premium-cc-save-alias input:focus {
    outline: none;
    border-color: #316FA2;
    box-shadow: 0 0 0 3px rgba(49, 111, 162, 0.1);
}

/* Invoice Summary */
.premium-cc-invoice-summary {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.premium-cc-invoice-summary table {
    width: 100%;
    border-collapse: collapse;
}

.premium-cc-invoice-summary thead {
    background: linear-gradient(135deg, #e8f2f8 0%, #d1dce6 100%);
}

.premium-cc-invoice-summary th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-cc-invoice-summary td {
    padding: 12px 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    border-bottom: 1px solid #e8f2f8;
}

.premium-cc-invoice-summary tbody tr:last-child td {
    border-bottom: none;
}

.premium-cc-invoice-summary tbody tr:hover {
    background: #f8fafc;
}

.premium-cc-invoice-item-name {
    font-weight: 600;
    color: #316FA2;
}

.premium-cc-invoice-total-row td {
    background: linear-gradient(135deg, #e8f2f8 0%, #f0f7fb 100%);
    font-weight: 700;
    font-size: 15px;
    color: #10b981;
    padding: 16px;
}

/* Mobile Invoice Table */
.premium-cc-invoice-mobile {
    display: none;
}

/* Pay Button */
.premium-cc-pay-button-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.premium-cc-pay-btn {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-cc-pay-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.premium-cc-pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.premium-cc-pay-btn i {
    font-size: 18px;
}

/* Spinner */
.premium-cc-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Data Content */
.premium-cc-data-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-cc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .premium-cc-header-btn {
        width: 100%;
    }

    .premium-cc-header .btn {
        width: 100%;
        justify-content: center;
    }

    .premium-cc-form-row {
        grid-template-columns: 1fr;
    }

    .premium-cc-saved-cards {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .premium-cc-card {
        margin-bottom: 16px;
    }

    .premium-cc-header {
        padding: 20px 24px;
    }

    .premium-cc-content {
        padding: 24px;
    }

    .premium-cc-header h3 {
        font-size: 18px;
    }

    .premium-cc-form-row {
        gap: 16px;
    }

    .premium-cc-saved-cards {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .premium-cc-invoice-summary th,
    .premium-cc-invoice-summary td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .premium-cc-invoice-mobile {
        display: table;
        margin-bottom: 24px;
    }

    .premium-cc-invoice-desktop {
        display: none;
    }

    .premium-cc-pay-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-cc-header {
        padding: 16px;
    }

    .premium-cc-content {
        padding: 16px;
    }

    .premium-cc-header h3 {
        font-size: 16px;
    }

    .premium-cc-form-row {
        gap: 12px;
    }

    .premium-cc-form-left {
        gap: 12px;
    }

    .premium-cc-form-group label {
        font-size: 12px;
    }

    .premium-cc-form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .premium-cc-saved-cards {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .premium-cc-card-item {
        padding: 12px;
    }

    .premium-cc-card-item-name {
        font-size: 12px;
    }

    .premium-cc-card-item-number {
        font-size: 11px;
    }

    .premium-cc-invoice-summary th,
    .premium-cc-invoice-summary td {
        padding: 8px 10px;
        font-size: 11px;
    }

    .premium-cc-pay-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .premium-cc-save-section {
        padding: 16px;
    }
}

/* ===================================
   INVOICE DETAILS PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-invoice-details-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-invoice-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.premium-invoice-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-invoice-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    padding: 28px 32px;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-invoice-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-invoice-header-title {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.premium-invoice-header-logo {
    position: relative;
    z-index: 1;
}

.premium-invoice-header-logo img {
    max-width: 200px;
    height: 48px;
    object-fit: contain;
}

/* Content */
.premium-invoice-content {
    padding: 32px;
}

/* Invoice Info Grid */
.premium-invoice-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Invoice Info Card */
.premium-invoice-info-item {
    padding: 20px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.premium-invoice-info-item:hover {
    border-color: #316FA2;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
    transform: translateY(-2px);
}

.premium-invoice-info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.premium-invoice-info-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #316FA2;
    word-break: break-word;
}

.premium-invoice-status-paid {
    color: #10b981;
}

.premium-invoice-status-pending {
    color: #f59e0b;
}

.premium-invoice-status-failed {
    color: #ef4444;
}

/* Items Table */
.premium-invoice-table-wrapper {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.premium-invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-invoice-table thead {
    background: linear-gradient(135deg, #e8f2f8 0%, #d1dce6 100%);
}

.premium-invoice-table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-invoice-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    border-bottom: 1px solid #e8f2f8;
}

.premium-invoice-table tbody tr:last-child td {
    border-bottom: none;
}

.premium-invoice-table tbody tr:hover {
    background: #f8fafc;
}

.premium-invoice-item-name {
    font-weight: 700;
    color: #316FA2;
}

.premium-invoice-item-quantity {
    color: #10b981;
    font-weight: 600;
}

/* Summary Section */
.premium-invoice-summary {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.premium-invoice-summary-box {
    padding: 24px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    min-width: 300px;
}

.premium-invoice-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8f2f8;
    font-size: 14px;
}

.premium-invoice-summary-row:last-child {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid #316FA2;
}

.premium-invoice-summary-label {
    color: #64748b;
    font-weight: 600;
}

.premium-invoice-summary-value {
    color: #1a2332;
    font-weight: 700;
    font-size: 15px;
}

.premium-invoice-summary-row:last-child .premium-invoice-summary-label {
    color: #316FA2;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.premium-invoice-summary-row:last-child .premium-invoice-summary-value {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
}

/* Divider */
.premium-invoice-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e8f2f8, transparent);
    margin: 24px 0;
}

/* Pay Button Container */
.premium-invoice-pay-container {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

/* Pay Button */
.premium-invoice-pay-btn {
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-invoice-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-invoice-pay-btn i {
    font-size: 18px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .premium-invoice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .premium-invoice-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .premium-invoice-summary {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .premium-invoice-header {
        padding: 20px 24px;
    }

    .premium-invoice-content {
        padding: 24px;
    }

    .premium-invoice-header-title {
        font-size: 18px;
    }

    .premium-invoice-header-logo img {
        max-width: 150px;
        height: 36px;
    }

    .premium-invoice-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .premium-invoice-info-item {
        padding: 16px;
    }

    .premium-invoice-info-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .premium-invoice-info-value {
        font-size: 14px;
    }

    .premium-invoice-table th,
    .premium-invoice-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .premium-invoice-summary-box {
        min-width: 280px;
        padding: 16px;
    }

    .premium-invoice-pay-btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .premium-invoice-header {
        padding: 16px;
    }

    .premium-invoice-content {
        padding: 16px;
    }

    .premium-invoice-header-title {
        font-size: 16px;
    }

    .premium-invoice-header-logo img {
        max-width: 120px;
        height: 28px;
    }

    .premium-invoice-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .premium-invoice-info-item {
        padding: 12px;
    }

    .premium-invoice-info-label {
        font-size: 10px;
    }

    .premium-invoice-info-value {
        font-size: 13px;
    }

    .premium-invoice-table-wrapper {
        overflow-x: auto;
    }

    .premium-invoice-table th,
    .premium-invoice-table td {
        padding: 8px 10px;
        font-size: 11px;
    }

    .premium-invoice-summary {
        justify-content: center;
    }

    .premium-invoice-summary-box {
        min-width: 260px;
        padding: 12px;
    }

    .premium-invoice-summary-label,
    .premium-invoice-summary-value {
        font-size: 12px;
    }

    .premium-invoice-pay-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===================================
   BALANCE DEPOSIT PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-balance-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-balance-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    max-width: 600px;
    margin: 0 auto;
}

.premium-balance-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-balance-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%) !important;
    padding: 32px !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.premium-balance-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-balance-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    margin: 0 !important;
    letter-spacing: -0.3px;
}

.premium-balance-title i {
    font-size: 28px;
}

/* Content */
.premium-balance-content {
    padding: 40px 32px !important;
}

.premium-balance-content .form-group {
    margin-bottom: 24px;
}

.premium-balance-content .form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.premium-balance-content .form-control {
    padding: 14px 16px;
    border: 2px solid #e8f2f8 !important;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff !important;
}

.premium-balance-content .form-control:focus {
    outline: none;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1) !important;
}

.premium-balance-content .form-control::placeholder {
    color: #b1b1b1;
}

/* Button */
.premium-balance-content .btn {
    padding: 14px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-balance-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-balance-content .btn:active {
    transform: translateY(0);
}

.premium-balance-content .btn i {
    font-size: 18px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-balance-header {
        padding: 24px !important;
    }

    .premium-balance-content {
        padding: 24px !important;
    }

    .premium-balance-title {
        font-size: 20px;
    }

    .premium-balance-title i {
        font-size: 24px;
    }

    .premium-balance-content .btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .premium-balance-card {
        border-radius: 12px;
    }

    .premium-balance-header {
        padding: 20px !important;
    }

    .premium-balance-content {
        padding: 20px !important;
    }

    .premium-balance-title {
        font-size: 18px;
        gap: 8px;
    }

    .premium-balance-title i {
        font-size: 22px;
    }

    .premium-balance-content .form-group label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .premium-balance-content .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .premium-balance-content .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }
}

/* ===================================
   SUPPORT TICKETS PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-tickets-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-tickets-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    margin-bottom: 24px !important;
}

.premium-tickets-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-tickets-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%) !important;
    padding: 28px 32px !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.premium-tickets-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-tickets-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0 !important;
    letter-spacing: -0.3px;
}

.premium-tickets-title i {
    font-size: 24px;
}

/* Content */
.premium-tickets-content {
    padding: 24px 32px !important;
}

/* Table Wrapper */
.premium-tickets-table-wrapper {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    overflow: hidden;
}

.premium-tickets-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-tickets-table thead {
    background: linear-gradient(135deg, #e8f2f8 0%, #d1dce6 100%);
}

.premium-tickets-table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #d1dce6;
}

.premium-tickets-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #1a2332;
    font-weight: 500;
    border-bottom: 1px solid #e8f2f8;
}

.premium-tickets-table tbody tr:last-child td {
    border-bottom: none;
}

.premium-tickets-table tbody tr:hover {
    background: #f8fafc;
}

/* Ticket ID */
.premium-ticket-id {
    font-weight: 700;
    color: #316FA2;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

/* Ticket Subject */
.premium-ticket-subject {
    font-weight: 600;
    color: #316FA2;
}

/* Status Badge */
.premium-ticket-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-ticket-status-open {
    background: #dbeafe;
    color: #1e40af;
}

.premium-ticket-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.premium-ticket-status-closed {
    background: #dcfce7;
    color: #166534;
}

.premium-ticket-status-urgent {
    background: #fee2e2;
    color: #991b1b;
}

/* Department */
.premium-ticket-department {
    font-weight: 600;
    color: #64748b;
}

/* Date */
.premium-ticket-date {
    color: #64748b;
    font-size: 13px;
}

/* View Button */
.premium-ticket-view-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%);
    color: #ffffff !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-ticket-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.25);
    color: #ffffff !important;
}

.premium-ticket-view-btn i {
    font-size: 14px;
}

/* Empty State */
.premium-ticket-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.premium-ticket-empty-icon {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.premium-ticket-empty-text {
    font-size: 14px;
    font-weight: 600;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 1024px) {
    .premium-tickets-table {
        font-size: 13px;
    }

    .premium-tickets-table th,
    .premium-tickets-table td {
        padding: 12px;
    }

    .premium-ticket-view-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 768px) {
    .premium-tickets-header {
        padding: 20px 24px !important;
    }

    .premium-tickets-content {
        padding: 20px 24px !important;
    }

    .premium-tickets-title {
        font-size: 18px;
    }

    .premium-tickets-title i {
        font-size: 20px;
    }

    .premium-tickets-table {
        font-size: 12px;
    }

    .premium-tickets-table th,
    .premium-tickets-table td {
        padding: 10px;
    }

    .premium-ticket-id {
        font-size: 12px;
    }

    .premium-ticket-status {
        padding: 4px 8px;
        font-size: 11px;
    }

    .premium-ticket-view-btn {
        padding: 6px 10px;
        font-size: 10px;
    }

    .premium-ticket-view-btn i {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .premium-tickets-card {
        border-radius: 12px;
        margin-bottom: 16px !important;
    }

    .premium-tickets-header {
        padding: 16px 20px !important;
    }

    .premium-tickets-content {
        padding: 16px 20px !important;
    }

    .premium-tickets-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-tickets-title i {
        font-size: 18px;
    }

    .premium-tickets-table {
        font-size: 11px;
    }

    .premium-tickets-table th,
    .premium-tickets-table td {
        padding: 8px;
    }

    .premium-ticket-id {
        font-size: 11px;
    }

    .premium-ticket-status {
        padding: 4px 8px;
        font-size: 10px;
    }

    .premium-ticket-view-btn {
        padding: 6px 8px;
        font-size: 9px;
    }

    .premium-ticket-view-btn i {
        font-size: 11px;
    }

    .premium-ticket-empty {
        padding: 30px 15px;
    }

    .premium-ticket-empty-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .premium-ticket-empty-text {
        font-size: 13px;
    }
}

/* ===================================
   CREATE NEW SUPPORT TICKET PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-new-ticket-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-new-ticket-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    max-width: 800px;
    margin: 0 auto;
}

.premium-new-ticket-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-new-ticket-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%) !important;
    padding: 32px !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.premium-new-ticket-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-new-ticket-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    margin: 0 !important;
    letter-spacing: -0.3px;
}

.premium-new-ticket-title i {
    font-size: 28px;
}

/* Content */
.premium-new-ticket-content {
    padding: 40px 32px !important;
}

/* Form Group */
.premium-new-ticket-form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-new-ticket-form-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
    align-self: flex-start;
}

/* Input */
.premium-new-ticket-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8 !important;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff !important;
    height: 44px;
    display: flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.premium-new-ticket-input:focus {
    outline: none !important;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1) !important;
}

/* Select */
.premium-new-ticket-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8 !important;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #1a2332;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23316FA2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.08);
    height: 44px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.premium-new-ticket-select:hover {
    border-color: #316FA2;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.12);
}

.premium-new-ticket-select:focus {
    outline: none !important;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1) !important;
}

.premium-new-ticket-select option {
    color: #1a2332;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
}

.premium-new-ticket-select option:hover {
    background: linear-gradient(#316FA2, #316FA2);
    color: #ffffff;
}

/* Textarea */
.premium-new-ticket-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8 !important;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff !important;
    color: #1a2332;
    resize: vertical;
    min-height: 120px;
}

.premium-new-ticket-textarea:focus {
    outline: none !important;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1) !important;
}

/* Form Row */
.premium-new-ticket-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Submit Button */
.premium-new-ticket-submit-btn {
    padding: 14px 48px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-new-ticket-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-new-ticket-submit-btn:active {
    transform: translateY(0);
}

.premium-new-ticket-submit-btn i {
    font-size: 18px;
}

/* File Upload */
.premium-new-ticket-file-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.premium-new-ticket-file-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #e8f2f8 !important;
    border-radius: 12px;
    background: #f8fafc !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-new-ticket-file-input:hover {
    border-color: #316FA2;
    background: #f0f7fb !important;
}

/* Upload List */
.premium-new-ticket-upload-list {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e8f2f8;
}

/* Upload Item */
.premium-new-ticket-upload-item {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.premium-new-ticket-upload-item-info {
    flex: 1;
}

.premium-new-ticket-upload-item-name {
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 4px;
    word-break: break-word;
}

.premium-new-ticket-upload-item-size {
    font-size: 12px;
    color: #64748b;
}

.premium-new-ticket-upload-item-progress {
    font-size: 14px;
    font-weight: 700;
    color: #316FA2;
    min-width: 50px;
    text-align: right;
}

.premium-new-ticket-upload-item-delete {
    padding: 8px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-new-ticket-upload-item-delete:hover {
    background: #fecaca;
    transform: scale(1.05);
}

.premium-new-ticket-upload-item-delete svg {
    width: 16px;
    height: 16px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-new-ticket-header {
        padding: 24px !important;
    }

    .premium-new-ticket-content {
        padding: 24px !important;
    }

    .premium-new-ticket-title {
        font-size: 20px;
    }

    .premium-new-ticket-title i {
        font-size: 24px;
    }

    .premium-new-ticket-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-new-ticket-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .premium-new-ticket-card {
        border-radius: 12px;
        max-width: 100%;
    }

    .premium-new-ticket-header {
        padding: 20px !important;
    }

    .premium-new-ticket-content {
        padding: 20px !important;
    }

    .premium-new-ticket-title {
        font-size: 18px;
        gap: 8px;
    }

    .premium-new-ticket-title i {
        font-size: 22px;
    }

    .premium-new-ticket-form-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .premium-new-ticket-input,
    .premium-new-ticket-select,
    .premium-new-ticket-textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .premium-new-ticket-textarea {
        min-height: 100px;
    }

    .premium-new-ticket-form-row {
        gap: 12px;
        margin-bottom: 16px;
    }

    .premium-new-ticket-submit-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    .premium-new-ticket-upload-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .premium-new-ticket-upload-item-progress {
        width: 100%;
        text-align: left;
    }

    .premium-new-ticket-upload-item-delete {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   TICKET DETAIL PAGE REDESIGN
   =================================== */

/* Wrapper */
.premium-ticket-detail-wrapper {
    animation: slideInUp 0.5s ease-out;
}

/* Main Card */
.premium-ticket-detail-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(49, 111, 162, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
    margin-bottom: 24px !important;
}

.premium-ticket-detail-card:hover {
    box-shadow: 0 8px 24px rgba(49, 111, 162, 0.12);
}

/* Header */
.premium-ticket-detail-header {
    background: linear-gradient(135deg, #316FA2 0%, #2558a0 100%) !important;
    padding: 28px 32px !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.premium-ticket-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-ticket-detail-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0 !important;
    letter-spacing: -0.3px;
}

.premium-ticket-detail-title i {
    font-size: 24px;
}

.premium-ticket-detail-toggle {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 24px;
}

.premium-ticket-detail-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Content */
.premium-ticket-detail-content {
    padding: 32px !important;
}

/* Info Grid */
.premium-ticket-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Info Item */
.premium-ticket-detail-info-item {
    padding: 20px;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.premium-ticket-detail-info-item:hover {
    border-color: #316FA2;
    box-shadow: 0 4px 12px rgba(49, 111, 162, 0.1);
    transform: translateY(-2px);
}

.premium-ticket-detail-info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.premium-ticket-detail-info-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #316FA2;
    word-break: break-word;
}

.premium-ticket-detail-info-value.status-open {
    color: #3b82f6;
}

.premium-ticket-detail-info-value.status-pending {
    color: #f59e0b;
}

.premium-ticket-detail-info-value.status-closed {
    color: #10b981;
}

.premium-ticket-detail-info-value.status-urgent {
    color: #ef4444;
}

/* Reply Section */
.premium-ticket-reply-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e8f2f8;
}

.premium-ticket-reply-section.hidden {
    display: none;
}

/* Reply Form */
.premium-ticket-reply-form {
    padding: 24px !important;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
}

.premium-ticket-reply-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8 !important;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff !important;
    color: #1a2332;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 16px;
}

.premium-ticket-reply-textarea:focus {
    outline: none !important;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1) !important;
}

/* Reply Button */
.premium-ticket-reply-btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-ticket-reply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-ticket-reply-btn:active {
    transform: translateY(0);
}

.premium-ticket-reply-btn i {
    font-size: 16px;
}

/* File Upload */
.premium-ticket-file-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #e8f2f8 !important;
    border-radius: 12px;
    background: #f8fafc !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.premium-ticket-file-input:hover {
    border-color: #316FA2;
    background: #f0f7fb !important;
}

/* Upload List */
.premium-ticket-upload-list {
    margin-top: 16px;
}

/* Upload Item */
.premium-ticket-upload-item {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.premium-ticket-upload-item-info {
    flex: 1;
}

.premium-ticket-upload-item-name {
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 4px;
    word-break: break-word;
}

.premium-ticket-upload-item-size {
    font-size: 12px;
    color: #64748b;
}

.premium-ticket-upload-item-progress {
    font-size: 14px;
    font-weight: 700;
    color: #316FA2;
    min-width: 50px;
    text-align: right;
}

.premium-ticket-upload-item-delete {
    padding: 8px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-ticket-upload-item-delete:hover {
    background: #fecaca;
    transform: scale(1.05);
}

.premium-ticket-upload-item-delete svg {
    width: 16px;
    height: 16px;
}

/* Posts Section */
.premium-ticket-posts {
    margin-top: 32px;
}

.premium-ticket-post-item {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
    border: 2px solid #e8f2f8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.premium-ticket-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f2f8;
}

.premium-ticket-post-author {
    font-weight: 700;
    color: #316FA2;
    font-size: 14px;
}

.premium-ticket-post-date {
    font-size: 12px;
    color: #64748b;
}

.premium-ticket-post-content {
    color: #1a2332;
    line-height: 1.6;
    font-size: 14px;
}

/* Reply Form */
.premium-ticket-detail-reply-form {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%) !important;
    padding: 0 !important;
}

.premium-ticket-detail-reply-form .row {
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 100%);
}

/* Textarea */
.premium-ticket-reply-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f2f8 !important;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff !important;
    color: #1a2332;
    resize: vertical;
    min-height: 120px;
}

.premium-ticket-reply-textarea:focus {
    outline: none !important;
    border-color: #316FA2 !important;
    box-shadow: 0 0 0 4px rgba(49, 111, 162, 0.1) !important;
}

.premium-ticket-reply-textarea::placeholder {
    color: #b1b1b1;
}

/* File Section */
.premium-ticket-file-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e8f2f8;
}

.premium-ticket-file-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.premium-ticket-file-input {
    display: block;
    width: 100%;
    padding: 16px;
    border: 2px dashed #e8f2f8 !important;
    border-radius: 12px;
    background: #f8fafc !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #316FA2;
    font-weight: 600;
}

.premium-ticket-file-input:hover {
    border-color: #316FA2;
    background: #f0f7fb !important;
    box-shadow: 0 2px 8px rgba(49, 111, 162, 0.08);
}

/* Upload List */
.premium-ticket-upload-list {
    margin-top: 16px;
}

/* Reply Button */
.premium-ticket-detail-reply-form .btn-special {
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.premium-ticket-detail-reply-form .btn-special:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    color: #ffffff !important;
}

.premium-ticket-detail-reply-form .btn-special:active {
    transform: translateY(0);
}
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .premium-ticket-detail-header {
        padding: 20px 24px !important;
    }

    .premium-ticket-detail-content {
        padding: 24px !important;
    }

    .premium-ticket-detail-title {
        font-size: 18px;
    }

    .premium-ticket-detail-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .premium-ticket-detail-info-item {
        padding: 16px;
    }

    .premium-ticket-detail-info-label {
        font-size: 11px;
    }

    .premium-ticket-detail-info-value {
        font-size: 14px;
    }

    .premium-ticket-reply-textarea {
        min-height: 100px;
    }

    .premium-ticket-upload-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-ticket-upload-item-progress {
        width: 100%;
        text-align: left;
    }

    .premium-ticket-upload-item-delete {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .premium-ticket-detail-header {
        padding: 16px 20px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .premium-ticket-detail-content {
        padding: 16px !important;
    }

    .premium-ticket-detail-title {
        font-size: 16px;
        gap: 8px;
    }

    .premium-ticket-detail-title i {
        font-size: 20px;
    }

    .premium-ticket-detail-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .premium-ticket-detail-info-item {
        padding: 12px;
    }

    .premium-ticket-detail-info-label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .premium-ticket-detail-info-value {
        font-size: 13px;
    }

    .premium-ticket-reply-form {
        padding: 16px !important;
    }

    .premium-ticket-reply-textarea {
        min-height: 90px;
        font-size: 13px;
    }

    .premium-ticket-reply-btn {
        width: 100%;
        justify-content: center;
    }

    .premium-ticket-post-item {
        padding: 16px;
        margin-bottom: 12px;
    }

    .premium-ticket-post-author {
        font-size: 13px;
    }

    .premium-ticket-post-date {
        font-size: 11px;
    }

    .premium-ticket-post-content {
        font-size: 13px;
    }
}

