/* assets/css/style.css */
body {
    background: #f4f7fc;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.card-shadow {
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: none;
    border-radius: 20px;
}

.form-select, .form-control {
    border-radius: 12px;
    padding: 0.7rem 1rem;
}

.btn-primary {
    background: #1a1a2e;
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #16213e;
    transform: scale(1.02);
}

.btn-primary:disabled {
    opacity: 0.6;
    transform: none;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.8rem;
    margin: 0 auto 10px;
}

.btn-outline-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    transition: all 0.3s;
}

.table-sm td, .table-sm th {
    padding: 0.5rem 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
}