

:root {
    --vv-orange: #EC6E1E;
    --vv-orange-hover: #d4621a;
    --vv-dark-blue: #00293C;
    --vv-dark-blue-light: #003a54;
    --vv-white: #ffffff;
    --vv-gray-50: #f9fafb;
    --vv-gray-100: #f3f4f6;
    --vv-gray-200: #e5e7eb;
    --vv-gray-300: #d1d5db;
    --vv-gray-400: #9ca3af;
    --vv-gray-500: #6b7280;
    --vv-gray-600: #4b5563;
    --vv-gray-700: #374151;
    --vv-gray-800: #1f2937;
    --vv-gray-900: #111827;
    --vv-success: #10b981;
    --vv-warning: #f59e0b;
    --vv-danger: #ef4444;
    --vv-info: #3b82f6;
    --vv-border-radius: 8px;
    --vv-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --vv-shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --vv-shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --vv-transition: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--vv-gray-800);
    background: var(--vv-gray-50);
    min-height: 100vh;
}


h1, h2, h3, h4, h5, h6 {
    color: var(--vv-dark-blue);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 24px; margin-bottom: 16px; }
h2 { font-size: 20px; margin-bottom: 12px; }
h3 { font-size: 16px; margin-bottom: 8px; }

a {
    color: var(--vv-orange);
    text-decoration: none;
}

a:hover {
    color: var(--vv-orange-hover);
    text-decoration: underline;
}


.portal-wrapper {
    display: flex;
    min-height: 100vh;
}

.portal-sidebar {
    width: 260px;
    background: var(--vv-dark-blue);
    color: var(--vv-white);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}

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

.portal-sidebar-header h1 {
    color: var(--vv-white);
    font-size: 18px;
    margin: 0;
}

.portal-sidebar-header .portal-subtitle {
    color: var(--vv-gray-400);
    font-size: 12px;
    margin-top: 4px;
}

.portal-sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.portal-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--vv-gray-300);
    font-size: 14px;
    cursor: pointer;
    transition: background var(--vv-transition), color var(--vv-transition);
    text-decoration: none;
}

.portal-nav-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--vv-white);
    text-decoration: none;
}

.portal-nav-item.active {
    background: rgba(255,255,255,0.12);
    color: var(--vv-orange);
    border-left: 3px solid var(--vv-orange);
}

.portal-nav-item .nav-icon {
    width: 20px;
    margin-right: 12px;
    text-align: center;
}

.portal-sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: var(--vv-gray-400);
}

.portal-sidebar-legal {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.portal-main {
    flex: 1;
    margin-left: 260px;
    padding: 24px 32px;
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vv-gray-200);
}

.portal-header h1 {
    margin: 0;
}


.portal-card {
    background: var(--vv-white);
    border-radius: var(--vv-border-radius);
    box-shadow: var(--vv-shadow-sm);
    border: 1px solid var(--vv-gray-200);
    padding: 20px;
    margin-bottom: 16px;
}

.portal-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vv-gray-100);
}

.portal-card-header h3 {
    margin: 0;
}


.portal-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.portal-stat-card {
    background: var(--vv-white);
    border-radius: var(--vv-border-radius);
    padding: 20px;
    border: 1px solid var(--vv-gray-200);
    box-shadow: var(--vv-shadow-sm);
}

.portal-stat-card .stat-label {
    font-size: 12px;
    color: var(--vv-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.portal-stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--vv-dark-blue);
}

.portal-stat-card .stat-value.orange { color: var(--vv-orange); }
.portal-stat-card .stat-value.success { color: var(--vv-success); }


.portal-table {
    width: 100%;
    border-collapse: collapse;
}

.portal-table th {
    text-align: left;
    font-size: 12px;
    color: var(--vv-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border-bottom: 2px solid var(--vv-gray-200);
}

.portal-table td {
    padding: 12px;
    border-bottom: 1px solid var(--vv-gray-100);
    font-size: 14px;
}

.portal-table tr:hover {
    background: var(--vv-gray-50);
}


.portal-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.portal-badge.active { background: #d1fae5; color: #065f46; }
.portal-badge.inactive { background: var(--vv-gray-100); color: var(--vv-gray-600); }
.portal-badge.expired { background: #fee2e2; color: #991b1b; }
.portal-badge.revoked { background: #fef3c7; color: #92400e; }
.portal-badge.community { background: var(--vv-gray-100); color: var(--vv-gray-700); }
.portal-badge.professional { background: #dbeafe; color: #1e40af; }
.portal-badge.enterprise { background: #f3e8ff; color: #6b21a8; }
.portal-badge.development { background: #fef3c7; color: #92400e; }
.portal-badge.stable { background: #d1fae5; color: #065f46; }
.portal-badge.beta { background: #fef3c7; color: #92400e; }
.portal-badge.hotfix { background: #fee2e2; color: #991b1b; }
.portal-badge.demo { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }


.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background var(--vv-transition), transform var(--vv-transition);
}

.portal-btn:hover { transform: translateY(-1px); }
.portal-btn:active { transform: translateY(0); }

.portal-btn-primary {
    background: var(--vv-orange);
    color: var(--vv-white);
}

.portal-btn-primary:hover {
    background: var(--vv-orange-hover);
}

.portal-btn-secondary {
    background: var(--vv-gray-100);
    color: var(--vv-gray-700);
    border: 1px solid var(--vv-gray-300);
}

.portal-btn-secondary:hover {
    background: var(--vv-gray-200);
}

.portal-btn-danger {
    background: var(--vv-danger);
    color: var(--vv-white);
}

.portal-btn-danger:hover {
    background: #dc2626;
}

.portal-btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}


.portal-form-group {
    margin-bottom: 16px;
}

.portal-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--vv-gray-700);
    margin-bottom: 4px;
}

.portal-form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--vv-gray-300);
    border-radius: 6px;
    font-size: 14px;
    transition: border-color var(--vv-transition), box-shadow var(--vv-transition);
}

.portal-form-input:focus {
    outline: none;
    border-color: var(--vv-orange);
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.15);
}

.portal-form-input::placeholder {
    color: var(--vv-gray-400);
}

select.portal-form-input {
    appearance: none;
    background: var(--vv-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    padding-right: 36px;
}


.portal-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--vv-gray-400);
}

.portal-empty .empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}


.portal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--vv-gray-400);
}

.portal-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--vv-gray-200);
    border-top-color: var(--vv-orange);
    border-radius: 50%;
    animation: portal-spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes portal-spin {
    to { transform: rotate(360deg); }
}


.vv-modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 41, 60, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.vv-modal-overlay[style*="flex"] {
    display: flex;
}

.vv-modal-container {
    background: var(--vv-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 95%;
    overflow: hidden;
    animation: portal-modal-in 0.25s ease;
}

@keyframes portal-modal-in {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.vv-modal-overlay .vv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--vv-gray-50);
    border-bottom: 1px solid var(--vv-gray-200);
}

.vv-modal-overlay .vv-modal-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vv-dark-blue);
}

.vv-modal-overlay .vv-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--vv-gray-400);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--vv-transition);
    line-height: 1;
}

.vv-modal-overlay .vv-modal-close:hover {
    color: var(--vv-danger);
    background: rgba(239, 68, 68, 0.1);
}

.vv-modal-overlay .vv-modal-body {
    padding: 24px;
    color: var(--vv-gray-700);
}


.release-upload-zone {
    border: 2px dashed var(--vv-gray-300);
    border-radius: var(--vv-border-radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    background: var(--vv-gray-50);
    transition: border-color var(--vv-transition), background var(--vv-transition);
}

.release-upload-zone:hover {
    border-color: var(--vv-orange);
    background: #fff7ed;
}


@media (max-width: 768px) {
    .portal-sidebar {
        display: none;
    }
    .portal-main {
        margin-left: 0;
        padding: 16px;
    }
    .vv-modal-container {
        width: 98%;
        max-width: none;
    }
}




.notification-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 250000; 
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.notification-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}


.notification-toast.subtle {
    top: 20px;
    left: auto;
    right: 20px;
    bottom: auto;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.notification-toast.subtle.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-toast.subtle .toast-content {
    padding: 16px 24px;
    min-width: 300px;
    max-width: 400px;
    flex-direction: row;
    gap: 16px;
    border-radius: 12px;
}

.notification-toast.subtle .toast-icon {
    width: 40px;
    height: 40px;
    min-width: 40px; 
}

.notification-toast.subtle .toast-icon svg {
    width: 24px;
    height: 24px;
}

.notification-toast.subtle .toast-message {
    text-align: left;
    flex: 1;
}

.notification-toast.subtle .toast-message h3 {
    font-size: 16px;
    margin: 0 0 4px 0;
}

.notification-toast.subtle .toast-message p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}


.notification-toast.success .toast-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%);
    border: 2px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4),
                0 0 40px rgba(16, 185, 129, 0.2);
}

.notification-toast.success .toast-icon {
    background: rgba(255, 255, 255, 0.2);
    animation: successPulse 0.6s ease-out;
}

.notification-toast.success .toast-icon svg {
    stroke: #ffffff;
}


.notification-toast.error .toast-content {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
    border: 2px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.4),
                0 0 40px rgba(239, 68, 68, 0.2);
}

.notification-toast.error .toast-icon {
    background: rgba(255, 255, 255, 0.2);
    animation: errorShake 0.5s ease-out;
}

.notification-toast.error .toast-icon svg {
    stroke: #ffffff;
}


.toast-content {
    padding: 30px 40px;
    border-radius: 16px;
    min-width: 400px;
    max-width: 500px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


.toast-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 3;
    fill: none;
}


.toast-message {
    text-align: center;
    color: #ffffff;
}

.toast-message h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toast-message p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}


.toast-progress {
    display: none;
}


.toast-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.toast-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toast-close-btn:active {
    transform: translateY(0);
}


.notification-toast.success .toast-close-btn {
    display: none;
}


@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px) scale(1.05);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px) scale(1.05);
    }
}

@keyframes progressShrink {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}


@media (max-width: 768px) {
    .toast-content {
        min-width: 300px;
        padding: 25px 30px;
    }
    
    .toast-icon {
        width: 60px;
        height: 60px;
    }
    
    .toast-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .toast-message h3 {
        font-size: 20px;
    }
    
    .toast-message p {
        font-size: 14px;
    }
}



.confirm-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 250001; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.confirm-dialog-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.confirm-dialog {
    background: rgba(0, 41, 60, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    min-width: 450px;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(236, 110, 30, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.confirm-dialog-overlay.show .confirm-dialog {
    transform: scale(1);
}


.confirm-dialog-header {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.confirm-dialog-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 110, 30, 0.2);
    animation: confirmIconPulse 2s ease-in-out infinite;
}

.confirm-dialog-icon svg {
    width: 28px;
    height: 28px;
    stroke: #EC6E1E;
    fill: none;
    stroke-width: 2.5;
}

.confirm-dialog-title {
    flex: 1;
}

.confirm-dialog-title h3 {
    margin: 0;
    color: #EC6E1E;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(236, 110, 30, 0.3);
}


.confirm-dialog-body {
    padding: 30px;
}

.confirm-dialog-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.confirm-dialog-detail {
    color: #EC6E1E;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #EC6E1E;
    border-radius: 4px;
    margin-top: 15px;
}


.confirm-dialog-input {
    width: 100%;
    padding: 12px 16px;
    margin-top: 15px;
    background: rgba(0, 20, 30, 0.5);
    border: 2px solid rgba(236, 110, 30, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.3s ease;
}

.confirm-dialog-input:focus {
    outline: none;
    border-color: #EC6E1E;
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.1);
}

.confirm-dialog-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}


.confirm-dialog-actions {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.confirm-btn {
    padding: 12px 30px;
    border: 2px solid;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.confirm-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.confirm-btn:hover::before {
    width: 300px;
    height: 300px;
}

.confirm-btn span {
    position: relative;
    z-index: 1;
}

.confirm-btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.confirm-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.confirm-btn-confirm {
    background: linear-gradient(135deg, #EC6E1E 0%, #d85510 100%);
    border-color: #EC6E1E;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(236, 110, 30, 0.3);
}

.confirm-btn-confirm:hover {
    background: linear-gradient(135deg, #ff7e2e 0%, #EC6E1E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 110, 30, 0.5);
}

.confirm-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.confirm-btn-primary:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}


@keyframes confirmIconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(236, 110, 30, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(236, 110, 30, 0);
    }
}


@media (max-width: 768px) {
    .confirm-dialog {
        min-width: 320px;
        max-width: 90%;
        margin: 20px;
    }
    
    .confirm-dialog-header {
        padding: 20px;
    }
    
    .confirm-dialog-icon {
        width: 40px;
        height: 40px;
    }
    
    .confirm-dialog-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .confirm-dialog-title h3 {
        font-size: 18px;
    }
    
    .confirm-dialog-body {
        padding: 20px;
    }
    
    .confirm-dialog-message {
        font-size: 14px;
    }
    
    .confirm-dialog-detail {
        font-size: 16px;
    }
    
    .confirm-dialog-actions {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .confirm-btn {
        width: 100%;
    }
}




.vv-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}


#companySyncModal {
    z-index: 10000;
}

.vv-modal.show {
    display: block;
}


.vv-modal-content {
    background: linear-gradient(135deg, rgba(0, 41, 60, 0.98) 0%, rgba(0, 20, 30, 0.98) 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid rgba(236, 110, 30, 0.3);
    border-radius: 12px;
    width: 95%;
    max-width: 1200px;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.vv-modal-content.modal-lg {
    max-width: 1400px;
}

.vv-modal-content.modal-md {
    max-width: 900px;
}

.vv-modal-content.modal-sm {
    max-width: 600px;
}


.vv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: rgba(236, 110, 30, 0.1);
    border-bottom: 2px solid rgba(236, 110, 30, 0.3);
}

.vv-modal-header h2 {
    margin: 0;
    color: #EC6E1E;
    font-size: 1.8rem;
    font-weight: 700;
}

.vv-modal-close {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0 10px;
    background: none;
    border: none;
}

.vv-modal-close:hover {
    color: #EC6E1E;
    transform: rotate(90deg);
}


.vv-modal-body {
    padding: 30px;
    max-height: calc(92vh - 100px);
    overflow-y: auto;
}


#vikiQuestionJsonModalMeta {
    color: rgba(255, 255, 255, 0.74) !important;
}

#vikiQuestionJsonModalContent {
    color: rgba(255, 255, 255, 0.92) !important;
}



.vv-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.vv-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vv-tab-btn:hover {
    color: #fff;
    background: rgba(236, 110, 30, 0.1);
}

.vv-tab-btn.active {
    color: #EC6E1E;
    border-bottom-color: #EC6E1E;
}

.vv-tab-btn svg {
    stroke: currentColor;
}


.vv-tab-content {
    display: none;
}

.vv-tab-content.active {
    display: block;
}



.vv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vv-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.vv-form-group label {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.vv-form-input,
.vv-form-select,
.vv-form-textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    background: rgba(0, 41, 60, 0.5);
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.vv-form-input:focus,
.vv-form-select:focus,
.vv-form-textarea:focus {
    outline: none;
    border-color: #EC6E1E;
    background: rgba(0, 41, 60, 0.7);
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.1);
}

.vv-form-input:read-only {
    background: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    opacity: 0.6;
}

.vv-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23EC6E1E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.vv-form-select option {
    background: #00293C;
    color: #fff;
    padding: 10px;
}

.vv-form-textarea {
    resize: vertical;
    min-height: 80px;
}


.vv-form-hint {
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}



.vv-toggle-group {
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-end;
}

.vv-toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 16px 16px 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 400px;
}

.vv-toggle-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 110, 30, 0.1), transparent);
    transition: left 0.6s ease;
}

.vv-toggle-label:hover::before {
    left: 100%;
}

.vv-toggle-label:hover {
    background: rgba(236, 110, 30, 0.08);
    border-color: rgba(236, 110, 30, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 110, 30, 0.15);
}

.vv-toggle-text,
.vv-toggle-label-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-align: left;
}

.vv-toggle-label-large {
    width: 400px;
}

.vv-toggle-label-large .vv-toggle-text,
.vv-toggle-label-large .vv-toggle-label-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.vv-toggle-switch {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 28px;
}

.vv-toggle-switch-large {
    width: 68px;
    height: 34px;
}

.vv-toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.vv-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(150, 150, 150, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vv-toggle-switch-large .vv-toggle-slider {
    border-radius: 34px;
}

.vv-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vv-toggle-switch-large .vv-toggle-slider::before {
    height: 26px;
    width: 26px;
}

.vv-toggle-slider::after {
    content: 'OFF';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.vv-toggle-switch-large .vv-toggle-slider::after {
    font-size: 10px;
    right: 10px;
}

.vv-toggle-slider:hover {
    border-color: rgba(236, 110, 30, 0.5);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(236, 110, 30, 0.1);
}

input:checked + .vv-toggle-slider {
    background: linear-gradient(135deg, #EC6E1E 0%, #d15e15 100%);
    border-color: #EC6E1E;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 12px rgba(236, 110, 30, 0.4);
}

input:checked + .vv-toggle-slider::before {
    transform: translateX(28px);
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.vv-toggle-switch-large input:checked + .vv-toggle-slider::before {
    transform: translateX(34px);
}

input:checked + .vv-toggle-slider::after {
    content: 'ON';
    left: 8px;
    right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.vv-toggle-switch-large input:checked + .vv-toggle-slider::after {
    left: 10px;
}

.vv-toggle-label:has(input:checked) {
    background: rgba(236, 110, 30, 0.12);
    border-color: rgba(236, 110, 30, 0.6);
    box-shadow: 0 0 20px rgba(236, 110, 30, 0.15);
}

.vv-toggle-label:has(input:checked) .vv-toggle-text,
.vv-toggle-label:has(input:checked) .vv-toggle-label-text {
    color: #EC6E1E;
}

@keyframes vv-toggle-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 110, 30, 0.4);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(236, 110, 30, 0);
    }
}

input:active + .vv-toggle-slider {
    animation: vv-toggle-ripple 0.6s ease-out;
}


.vv-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vv-toggle-simple {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.vv-toggle-simple input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.vv-toggle-simple .vv-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.vv-toggle-simple .vv-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vv-toggle-simple input:checked + .vv-slider {
    background: #EC6E1E;
    border-color: #EC6E1E;
}

.vv-toggle-simple input:checked + .vv-slider::before {
    transform: translateX(24px);
}

.vv-toggle-simple:hover .vv-slider {
    border-color: rgba(236, 110, 30, 0.5);
}

.vv-toggle-row .vv-toggle-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}


.vv-toggle-simple.vv-toggle-sm {
    width: 44px;
    height: 24px;
}

.vv-toggle-simple.vv-toggle-sm .vv-slider::before {
    height: 16px;
    width: 16px;
}

.vv-toggle-simple.vv-toggle-sm input:checked + .vv-slider::before {
    transform: translateX(20px);
}


.vv-toggle-light .vv-slider {
    background: #d0d0d0;
    border: 1px solid #bbb;
}

.vv-toggle-light .vv-slider::before {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.15);
}

.vv-toggle-light input:checked + .vv-slider {
    background: #EC6E1E;
    border-color: #EC6E1E;
}

.vv-toggle-light .vv-toggle-text {
    color: #00293C;
    font-weight: 600;
}



.vv-radio-cards {
    display: flex;
    gap: 12px;
}

.vv-radio-card {
    flex: 1;
    cursor: pointer;
}

.vv-radio-card input[type="radio"] {
    display: none;
}

.vv-radio-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vv-radio-card:hover .vv-radio-card-content {
    background: rgba(236, 110, 30, 0.1);
    border-color: rgba(236, 110, 30, 0.5);
}

.vv-radio-card input[type="radio"]:checked + .vv-radio-card-content {
    background: rgba(236, 110, 30, 0.2);
    border-color: #EC6E1E;
    box-shadow: 0 0 15px rgba(236, 110, 30, 0.3);
}

.vv-radio-card-content svg {
    color: #fff;
    transition: color 0.3s ease;
}

.vv-radio-card input[type="radio"]:checked + .vv-radio-card-content svg {
    color: #EC6E1E;
}

.vv-radio-card-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}



.vv-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vv-checkbox-label:hover {
    background: rgba(236, 110, 30, 0.08);
    border-color: rgba(236, 110, 30, 0.4);
}

.vv-checkbox-label:has(input:checked) {
    background: rgba(236, 110, 30, 0.12);
    border-color: rgba(236, 110, 30, 0.6);
}

.vv-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #EC6E1E;
}

.vv-checkbox-label span {
    color: #fff;
    font-weight: 500;
}



.vv-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vv-status-success {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.vv-status-failed,
.vv-status-error {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.vv-status-running,
.vv-status-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.vv-status-info {
    background: rgba(0, 130, 201, 0.15);
    color: #0082c9;
    border: 1px solid rgba(0, 130, 201, 0.3);
}



.vv-table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.vv-table th {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #EC6E1E;
    border-bottom: 2px solid rgba(236, 110, 30, 0.3);
}

.vv-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.vv-table tr:hover td {
    background: rgba(236, 110, 30, 0.05);
}

.vv-table-empty {
    text-align: center;
    padding: 40px !important;
    color: rgba(255, 255, 255, 0.5);
}



.vv-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vv-btn-primary {
    background: #EC6E1E;
    color: #fff;
}

.vv-btn-primary:hover {
    background: #d5621a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 110, 30, 0.4);
}

.vv-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.vv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.vv-btn-cancel {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.vv-btn-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(185, 28, 28, 0.2) 100%);
    border: 2px solid rgba(220, 53, 69, 0.5);
    color: #ff4d5e;
}

.vv-btn-danger:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3) 0%, rgba(185, 28, 28, 0.3) 100%);
    border-color: #dc3545;
}

.vv-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
}

.vv-btn-icon:hover {
    background: rgba(236, 110, 30, 0.3);
    border-color: #EC6E1E;
    color: #EC6E1E;
}


.vv-btn-sync {
    background: linear-gradient(135deg, #0082c9 0%, #006aa9 100%);
    color: #fff;
    border: none;
}

.vv-btn-sync:hover {
    background: linear-gradient(135deg, #006aa9 0%, #005489 100%);
}



.vv-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.vv-btn-group {
    display: flex;
    gap: 10px;
}



.vv-info-box {
    padding: 16px 20px;
    background: rgba(0, 130, 201, 0.1);
    border: 1px solid rgba(0, 130, 201, 0.3);
    border-radius: 8px;
    color: #fff;
    margin-bottom: 20px;
}

.vv-info-box.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.vv-info-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.vv-info-box.error {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}



.vv-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.vv-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #EC6E1E;
    border-radius: 50%;
    animation: vv-spin 1s linear infinite;
}

@keyframes vv-spin {
    to { transform: rotate(360deg); }
}



.vv-modal-body::-webkit-scrollbar {
    width: 8px;
}

.vv-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.vv-modal-body::-webkit-scrollbar-thumb {
    background: rgba(236, 110, 30, 0.5);
    border-radius: 4px;
}

.vv-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 110, 30, 0.7);
}




.vv-filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
}


.vv-filter-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
}


.vv-filter-spacer {
    height: 12px;
    background: transparent;
}


.vv-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vv-filter-group label {
    color: #00293C;
    font-weight: 600;
    font-size: 0.85rem;
}


.vv-filter-select {
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #00293C;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    min-width: 160px;
}

.vv-filter-select:hover {
    border-color: rgba(236, 110, 30, 0.5);
}

.vv-filter-select:focus {
    outline: none;
    border-color: #EC6E1E;
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.15);
}


.vv-filter-input {
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #00293C;
    background: #fff;
    transition: all 0.2s ease;
}

.vv-filter-input:hover {
    border-color: rgba(236, 110, 30, 0.5);
}

.vv-filter-input:focus {
    outline: none;
    border-color: #EC6E1E;
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.15);
}

.vv-filter-input::placeholder {
    color: #999;
}


.vv-filter-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vv-filter-btn-primary {
    background: linear-gradient(135deg, #EC6E1E 0%, #d15e15 100%);
    color: #fff;
}

.vv-filter-btn-primary:hover {
    background: linear-gradient(135deg, #d15e15 0%, #b84f10 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 110, 30, 0.3);
}

.vv-filter-btn-secondary {
    background: #f5f5f5;
    color: #00293C;
    border: 2px solid #e0e0e0;
}

.vv-filter-btn-secondary:hover {
    background: #eee;
    border-color: rgba(236, 110, 30, 0.5);
}



@media (max-width: 768px) {
    .vv-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .vv-form-row {
        grid-template-columns: 1fr;
    }
    
    .vv-tabs {
        flex-wrap: wrap;
    }
    
    .vv-tab-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .vv-radio-cards {
        flex-direction: column;
    }
    
    .vv-modal-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .vv-btn-group {
        width: 100%;
        justify-content: stretch;
    }
    
    .vv-btn-group button {
        flex: 1;
    }
}



.customer-license-card {
    background: var(--vv-white);
    border-radius: var(--vv-border-radius);
    border: 1px solid var(--vv-gray-200);
    padding: 24px;
    margin-bottom: 16px;
}

.customer-license-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.customer-license-key {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--vv-dark-blue);
    letter-spacing: 0.5px;
}

.customer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.customer-feature-tag {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.customer-feature-tag.enabled {
    background: #d1fae5;
    color: #065f46;
}

.customer-feature-tag.disabled {
    background: var(--vv-gray-100);
    color: var(--vv-gray-400);
    text-decoration: line-through;
}

.customer-instance-list {
    display: grid;
    gap: 12px;
}

.customer-instance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--vv-gray-50);
    border-radius: 8px;
    border: 1px solid var(--vv-gray-200);
}

.customer-instance-info {
    flex: 1;
}

.customer-instance-name {
    font-weight: 600;
    color: var(--vv-dark-blue);
    margin-bottom: 4px;
}

.customer-instance-meta {
    font-size: 12px;
    color: var(--vv-gray-500);
}

.customer-update-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border: 1px solid #fed7aa;
    border-radius: var(--vv-border-radius);
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-update-banner .update-icon {
    font-size: 32px;
}

.customer-update-banner .update-info h3 {
    color: var(--vv-dark-blue);
    margin-bottom: 4px;
}

.customer-update-banner .update-info p {
    font-size: 13px;
    color: var(--vv-gray-600);
}

.customer-limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.customer-limit-item {
    text-align: center;
    padding: 16px;
    background: var(--vv-gray-50);
    border-radius: 8px;
}

.customer-limit-item .limit-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--vv-dark-blue);
}

.customer-limit-item .limit-label {
    font-size: 12px;
    color: var(--vv-gray-500);
    margin-top: 4px;
}


.customer-profile-section {
    max-width: 700px;
}

.customer-profile-card {
    background: var(--vv-white);
    border-radius: var(--vv-border-radius);
    border: 1px solid var(--vv-gray-200);
    padding: 24px;
    margin-bottom: 16px;
}

.customer-profile-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--vv-dark-blue);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--vv-gray-100);
}

