/* Performance Reports Manager - Frontend Styles */
.reports-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reports-sidebar {
    width: 25%;
    padding: 20px;
    border-right: 2px solid #ddd;
}

.reports-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reports-sidebar li {
    margin-bottom: 10px;
}

.reports-sidebar a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    background: #eee;
    border-radius: 5px;
    transition: background 0.3s;
    cursor: pointer;
}

.reports-sidebar a:hover, .reports-sidebar a.active {
    background: #BF9B30;
    color: white;
}

.reports-content {
    width: 75%;
    padding: 20px;
}

.reports-title {
    color: #6f0000;
    font-size: 18px;
    margin-bottom: 20px;
}

.reports-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.report-item {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pdf-icon img {
    width: 80px;
    margin-bottom: 10px;
}
.content ul {
    list-style: none !important;
}

.download-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #BF9B30;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #8c6f22;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reports-container {
        flex-direction: column;
    }
    
    .reports-sidebar, .reports-content {
        width: 100%;
    }
    
    .reports-sidebar {
        border-right: none;
        border-bottom: 2px solid #ddd;
    }
    
    .report-item {
        min-width: 100%;
    }
}