/* Stylowanie zakładek */
.tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
}

.tab.active {
    background-color: #e2ddd6;
    border-bottom: none;
    font-weight: bold;
}

/* Stylowanie zawartości zakładek */
.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
}

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