/* admin */

.info-fieldset {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
}


/* menu */

.menu-tabs {
    display: flex;
    flex-direction: column;
}

.tab-container {
    overflow-x: scroll;
    white-space: nowrap;
}

.tab-list {
    display: flex;
    list-style: none;
    padding: 0;
}

.tab {
    padding: 10px 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: #ffffff;
}

/* Style dla zawartości zakładek */
.tab-content {
    display: none;
    padding: 20px;
}

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

.hidden {
    display: none;
}

