/* Responsive Table */
.table-container {
    overflow-x: auto;
   
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
        margin-top: 10px;

}

.responsive-table th, .responsive-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.responsive-table th {
    background-color: var(--primary-color);
    color: white;
}

.responsive-table tr:hover {
    background-color: var(--background-color);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .main-content {
        margin-left: 0;
    }
    .header {
        flex-direction: column;
        gap: 10px;
    }
    .top-right-section {
        flex-direction: column;
    }
}
