/* Professional Layout Enhancements */

/* Better visual hierarchy */
.professional-container {
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(6, 182, 212, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Refined button styles */
.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-success:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Professional spacing */
.professional-spacing {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Better text hierarchy */
.text-hierarchy-primary {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-hierarchy-secondary {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.text-hierarchy-tertiary {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
}

/* Refined shadows */
.shadow-professional {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.shadow-professional-hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Better borders */
.border-professional {
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
}

.border-professional-hover {
    border-color: rgba(6, 182, 212, 0.3);
}

/* Action button improvements */
.action-button {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.action-button:hover {
    transform: scale(1.05);
}

.action-button:active {
    transform: scale(0.98);
}

/* Professional glassmorphism */
.glass-professional {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Refined grid gaps */
.grid-professional {
    gap: 1rem;
}

@media (min-width: 640px) {
    .grid-professional {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .grid-professional {
        gap: 1.5rem;
    }
}

