body.enterprise-bg {
    background-color: #f8fafc;
    color: #1f2937;
}

.enterprise-navbar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.enterprise-card {
    border: 1px solid #d7dde7;
    border-radius: 0.6rem;
}

.table thead th {
    background-color: #eef2f7;
    font-weight: 600;
    border-color: #d7dde7;
}

.table tbody tr {
    border-color: #e2e8f0;
}

.table tbody tr:hover {
    background-color: #f8fafc;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Page transitions */
main {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge styles */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
}

/* Button hover effects */
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Card hover effects */
.card {
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Form inputs */
.form-control:focus,
.form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

/* Pagination Styling */
.pagination {
    margin: 0;
}

.page-link {
    color: #3b82f6;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.page-link:hover {
    color: #1e40af;
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

.page-link:focus {
    color: #1e40af;
    background-color: #f1f5f9;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

.page-item.active .page-link {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.page-item.disabled .page-link {
    color: #94a3b8;
    background-color: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

/* Alert animations */
.alert {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal styling */
.modal-content {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 12px;
    }

    .stat-card {
        padding: 16px;
    }
}
