/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 4 wrz 2025, 21:57:09
    Author     : piotrek
*/

/*taby*/
.content {
    display: none;
    font-size: 20px;
}
.content.active {
    display: block;
}
.info-contents {
    padding-block: 32px;
    background: #fff;
    min-height: 300px;
    transform: translateY(-2px);
}
.category {
    background-color: #FF8A00;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0 10px;
    flex-grow: 1;
    flex-shrink: 0;
    height: 68px;
    cursor: pointer;
    text-wrap: nowrap;
    user-select: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-categories {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    max-width: 1220px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.info-categories::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.info-categories .category:nth-of-type(2) {
    background: #93DEFF;
}
.info-categories .category:nth-of-type(1) {
    background: #53a9ff;
}
.info-categories .category:nth-of-type(4) {
    background: #FFCC00;
}
.category.active-category {
    color: #444;
    background: #fff !important;
}
.tabs {
    padding: 50px 15px 0;
    border-bottom: 2px solid #fff;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(180deg, #fff 0%, #e5e5e5 100%) center top no-repeat;
}
@media(max-width: 767px) {
    .timer-title {
        font-size: 17px;
    }
    .tabs {
        padding-inline: 10px 0;
    }
    .info-categories {
        gap: 10px;
    }
    .category {
        font-size: 22px;
    }
    .info-categories .category:nth-of-type(4) {
        margin-right: 10px;
    }
}
.winners-btn {
    text-align: center;
    font-family: Roboto;
    font-size: 20px;
    font-weight: bolder;
    line-height: 200%;
    text-decoration: underline;
    margin: 16px 0 24px;
    cursor: pointer;
}
.winners-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 24px;
    justify-content: center;
}
.winner-box {
    align-items: center;
    padding: 5px 12px;
    padding-left: 12px;
    border-radius: 8px;
    border: 1px solid #ACACAC;
    display: flex;
    gap: 10px;
    background: #FFF;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.displayNone, .winners-list_hidden {
    display: none;
}