/* Base container */
.widget-container {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Header */
.widget-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Tabs */
.tabs {
    text-align: center;
    margin-bottom: 20px;
}

.tabs button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}

.tabs button:hover {
    background: #0b5ed7;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table thead {
    background: #f8f9fa;
}

table th, table td {
    padding: 10px;
    border: 1px solid #dee2e6;
    text-align: center;
    font-size: 14px;
}

table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

/* Responsive */
@media (max-width: 600px) {
    table th, table td {
        padding: 6px;
        font-size: 12px;
    }

    .tabs button {
        padding: 8px 12px;
        font-size: 13px;
    }
}
