/* Global styles */
body {
    font-family: Arial, sans-serif;
    display: flex; /* Use flexbox for layout */
}

/* Table container */
.table-container {
    width: 200px; /* Adjust the width as needed */
    background-color: #f2f2f2;
    padding: 20px;
    overflow-y: auto; /* Enable vertical scroll if needed */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}

/* Table styles */
.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container th, .table-container td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.table-container th {
    background-color: #f2f2f2;
}

/* Link styles */
.table-container a {
    text-decoration: none;
    color: #333;
}

.table-container a:hover {
    color: #0066cc;
}

/* Content container */
.content-container {
    flex: 1; /* Take remaining width */
    padding: 20px;
}

/* Table toggle button */
.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.button1 {
    background-color: #008CBA;
}

/* Hidden class for expandable content */
.expandable-content {
    display: none;
}

