.tabs-container {
    display: flex;
    flex-direction: column;
    /* width: var(--app-overview-width); */
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.tabs-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.tab-button {
    display: flex;
    flex-direction: row;
    background-color: rgba(26, 26, 26, 0.05);
    color: black;
    padding: 10px 20px;
    text-decoration: none !important;
    border-radius: 10px;
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.tab-button.selected {
    /* background-color: #808080; */
    color: rgb(210, 140, 14);
}

.tab-button:hover {
    color: rgb(210, 140, 14);
}