.sidebar {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.main-content {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.workspace-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
}

.workspace-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.key-display {
    font-family: 'Monaco', 'Menlo', monospace;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.loading-spinner {
    display: none;
}

.corner-loading {
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 8px 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    z-index: 1050;
    display: none;
    align-items: center;
    gap: 8px;
}

.corner-loading.show {
    display: flex;
}

.corner-loading .spinner-border {
    width: 1rem;
    height: 1rem;
}

.error-alert {
    display: none;
}

.admin-field {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 0.5rem;
    margin: 0.25rem 0;
}

.country-checkbox {
    margin-right: 15px;
}