/* Custom styles for the reporting system */

/* Blob background effects */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
}

.blob1 {
    top: -100px;
    left: -100px;
}

.blob2 {
    bottom: -100px;
    right: -100px;
}

/* Glass card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Sidebar styles */
.sidebar {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    min-height: 100vh;
    transition: all 0.3s;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.sidebar .nav-link i {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar {
        position: fixed;
        z-index: 100;
        width: 250px;
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    main {
        margin-left: 0;
    }
}

/* Table styles */
.table {
    --bs-table-bg: transparent;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Form styles */
.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #495057;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #495057;
}

/* Button styles */
.btn-primary {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #5a0db5, #1c68e8);
}

/* Progress bar styles */
.progress {
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    transition: width 1s ease-in-out;
}

/* Alert styles */
.alert {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Badge styles */
.badge {
    font-weight: normal;
    padding: 0.35em 0.65em;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}