:root {
    --gradient-start: #4facfe;
    --gradient-end: #00f2fe;
}

body {
    background-color: #f5f7fb;
}

.gradient-card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}

table tbody tr:hover {
    background-color: rgba(79, 172, 254, 0.08);
}

.form-section {
    border-radius: 1rem;
    border: 1px solid #e7ebf3;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}





