/* Modern Theme CSS */
body {
    background: linear-gradient(135deg, rgba(130, 39, 123, 0.03) 0%, rgba(236, 78, 32, 0.03) 100%);
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.card {
    background: linear-gradient(135deg, rgba(130, 39, 123, 0.95) 0%, rgba(236, 78, 32, 0.85) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #82277b;
    box-shadow: 0 2px 4px rgba(130, 39, 123, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #EC4E20;
    box-shadow: 0 4px 8px rgba(236, 78, 32, 0.2);
}

.btn {
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #82277b 0%, #EC4E20 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #EC4E20 0%, #82277b 100%);
    transform: translateY(-2px);
}

table {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

th {
    background: #82277b;
    color: white;
}

.nav-link {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(130, 39, 123, 0.1);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(130, 39, 123, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #82277b 0%, #EC4E20 100%);
    border-radius: 4px;
}

/* Input groups */
.input-group {
    border-radius: 8px;
    overflow: hidden;
}

.input-group-text {
    background: #82277b;
    color: white;
    border: none;
}

/* Alert styles */
.alert {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.alert-success {
    background: linear-gradient(135deg, rgba(130, 39, 123, 0.1) 0%, rgba(236, 78, 32, 0.1) 100%);
    border-left: 4px solid #82277b;
}

/* Modal styles */
.modal-content {
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.modal-header {
    background: linear-gradient(135deg, #82277b 0%, #EC4E20 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

/* Loading spinner */
.spinner-grow {
    color: #82277b;
}

/* Custom shadows for depth */
.shadow-custom {
    box-shadow: 0 8px 16px rgba(130, 39, 123, 0.15);
}

/* Animation classes */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Section headers */
.section-header {
    color: #82277b;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #82277b 0%, #EC4E20 100%);
    border-radius: 3px;
}
