/* assets/css/custom.css */
:root {
    --primary-color: #7F2DDF;
    --primary-hover: #5d1eb5;
    --bg-color: #f4f6f9;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

body {
    background-color: var(--bg-color);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(127, 45, 223, 0.2);
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9b51e0 100%);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 15px rgba(127, 45, 223, 0.4);
    color: white;
}

/* Navbar */
.navbar-custom {
    background: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.navbar-custom .navbar-brand, .navbar-custom .nav-link {
    color: white !important;
}

/* Mobile Tables Horizontal Scroll */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-custom thead {
    background-color: var(--primary-color);
    color: white;
}
.table-custom {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}