/* TAB STYLES - Copy and paste this into your main CSS file or <style> tag */

.container {
    /*max-width: 800px;*/
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    background-color: #f9f9f9;
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background-color: #efefef;
}

.tab-button.active {
    background-color: white;
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-content {
    padding: 20px;
    display: none;
}

.tab-content.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th {
    background-color: #007bff;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

table tr:hover {
    background-color: #f5f5f5;
}

table tr:last-child td {
    border-bottom: none;
}
