body {
    display: flex;
    flex-wrap: nowrap;
    min-height: 100vh;
    margin: 0;
}
.sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: #343a40;
    color: white;
    padding-top: 20px;
}
.content {
    /* margin-left: 250px; */
    flex-grow: 1;
    padding: 20px;
    overflow-x: auto;
}
.table-container {
    width: 100%;
    overflow-x: auto;
}
table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}
table th,
table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}
table th {
    background-color: #007bff;
    color: white;
}
.btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.btn-add {
    background-color: #28a745;
    color: white;
}
.btn-edit {
    background-color: #ffc107;
    color: white;
}
.btn-delete {
    background-color: #dc3545;
    color: white;
}
.btn:hover {
    opacity: 0.8;
}
@media (max-width: 768px) {
    .sidebar {
        width: 100px;
    }
    /* .content {
        margin-left: 0px;
        flex-grow: 1;
        padding: 20px;
        overflow-x: auto;
    } */
    table th,
    table td {
        font-size: 12px;
        padding: 8px;
    }
}
@media (max-width: 480px) {
    .sidebar {
        display: none;
    }
    /* .content {
        margin-left: 0;
        padding: 10px;
    } */
    table th,
    table td {
        font-size: 10px;
        padding: 5px;
    }
}
