﻿.reports-container {
    max-height: 65vh; /* Adjust height as needed */
    overflow-y: auto;
    padding-right: 10px; /* optional: spacing for scrollbar */
    margin-top: 1rem;
    border: 1px solid #ccc; /* optional: visible scrollable area */
    border-radius: 8px; /* optional: rounded corners */
}

.report-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    padding: 0.75rem 3rem;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    gap: 1rem;
}

.report-icon i {
    font-size: 1.5rem;
    color: #007acc;
    margin-right: 0.5rem;
}

.report-title {
    font-weight: 600;
    white-space: nowrap;
    margin-right: 1rem;
}

.report-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

    .report-stats > div {
        text-align: center;
    }

.report-menu {
    position: relative;
    margin-left: auto;
    margin-right: 1rem;
}

.menu-button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.menu-dropdown {
    position: absolute;
    top: 1.8rem;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 6px;
    z-index: 999;
    width: max-content;
}

    .menu-dropdown a {
        display: block;
        margin-bottom: 0.25rem;
        cursor: pointer;
        font-size: 0.9rem;
    }

.report-footer {
    margin-left: auto;
}

.details-btn {
    background: #007acc;
    color: white;
    border: none;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
}
