/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Animations */
.transform-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.transform-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.shadow-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.shadow-hover:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    transform: translateY(-3px);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navbar Landing */
.navbar-dark.bg-dark {
    background-color: rgba(0,0,0,0.9) !important;
    backdrop-filter: blur(10px);
}

/* Sidebar Styles (Panel) */
.sidebar {
    width: 260px;
    height: 100vh;
    background: #1e1e2d;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s;
    z-index: 1000;
}

.sidebar-header {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: #1b1b28;
}

.sidebar .nav-link {
    color: #a2a3b7;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-left-color: #0d6efd;
}

.sidebar .nav-link i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

/* Main Content (Panel) */
.main-content {
    margin-left: 260px;
    padding: 20px;
    transition: all 0.3s;
}

/* Topbar (Panel) */
.topbar {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Enterprise Cards */
.card-enterprise {
    background: #fff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.card-header-enterprise {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 25px;
    font-weight: 600;
}

.btn-enterprise {
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    border: none;
}
.btn-enterprise:hover {
    background: #0b5ed7;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        margin-left: -260px;
    }
    .sidebar.active {
        margin-left: 0;
    }
    .main-content {
        margin-left: 0;
    }
}
