@import "variables.css";
@import "header.css";
@import "button.css";
@import "footer.css";
@import "card.css";
@import "form.css";

html,*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    height: 3px;
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-3);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

body{
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Roboto,  sans-serif;
    background: var(--color-2);
    color: white;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    height: inherit;
}

a {
    text-decoration: none;
}

.admin-bar main {
    margin-top: 112px;
}

main {
    margin-top: 80px;
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}


table {
    margin-block-start: 15px!important;
    margin-block-end: 15px!important;
    border-collapse: collapse;
}

table td {
    border: 1px solid white;
    padding: 10px;
}

.table_wrapper tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.1);
}

.table_wrapper {
    overflow: auto;
}

.arrow_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;

    .arrow {
        position: static;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--color-7);
        height: 40px;
        background: var(--color-7);
        cursor: pointer;
        border-radius: 100%;

        svg {
            width: 14px;
            height: 14px;
        }

        &.arrow--disabled {
            opacity: 0.5;
        }
    }
}

.navigation-wrapper .arrow.arrow--disabled {
    display: none;
}



.swiper-button-next:after, .swiper-button-prev:after {
    color: white;
    font-weight: bold;
}

.swiper-button-next {
    right: 0;
    left: auto;
}

.swiper-button-prev {
    left: 0;
    right: auto;
}

.block__head__title {
    font-size: 24px;
    color: white;
}

html :where(.wp-block) {
    max-width: 100vw;
}

section {
    padding-bottom: 40px;
}

.wp-block-group p a,
.yoast-breadcrumbs a,
.wp-block-group li a,
.wp-block-group table,
.wp-block-group table a,
.wp-singular a{
    color: var(--color-4);
}

.scroll-to-top {
    position: fixed !important;
    right: 20px !important;
    bottom: 100px !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-3);
    border: 1px solid var(--color-3);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 99999 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: var(--color-4);
    border-color: var(--color-4);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}


.app-download-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    margin: 10px 0;
}

.app-download-text {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.app-download-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.app-download-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-3);
    border: 1px solid var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-download-btn:hover {
    background: var(--color-4);
    border-color: var(--color-4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-download-btn svg {
    width: 24px;
    height: 24px;
}
