body,
html {
    /*    background-color: #18181b !important;*/
    background-color: rgb(10 10 10);
    color: white;
    font-family: 'Montserrat', sans-serif;
    /*    background: url('../img/jeklici-bg.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    scroll-behavior: smooth;
}

section {
    transition: scroll-position 0.5s ease-in-out;
}

section {
    will-change: scroll-position;
}

.login-page {
    background: url('../img/login-bg.jpg');
    background-size: cover;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    /* Remove any padding that may affect the height of the body */
    border: none;
    /* Remove any border that may affect the height of the body */
}

@media(min-width: 992px) {
    .login-page {
        animation: zoomInOut 60s ease-in-out infinite;
    }

    @keyframes zoomInOut {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }
}

/*
a.active {
    color: white;
}
*/
input {
    color: #18181b !important;
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, .05);
    border-radius: 16px;
}

.detail-page a img.w-full {
    height: 180px !important;
    width: 100%;
    object-fit: cover;
}

.login-page input.text-white {
    color: white !important;
}

.dataTables_filter {
    display: none;
}

div#photoTable_length select {
    color: black;
}

div#videoTable_length select {
    color: black;
}

.crest-page {
    background-image: none;
}

.crest-page img {
    opacity: 0;
    animation: reveal 3s forwards;
}

@keyframes reveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Default styling for pagination */
.paginate_button {
    display: inline-block;
    background-color: #4a5568;
    color: white;
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s ease-in-out;
}

/* Styling for disabled pagination buttons */
.paginate_button.disabled {
    background-color: #cbd5e0;
    color: #a0aec0;
    cursor: not-allowed;
    transition: none;
}

/* Styling for current page button */
.paginate_button.current {
    background-color: #718096;
    font-weight: bold;
}

/* Media query to adjust pagination for mobile screens */
@media (max-width: 640px) {
    .flex.items-center.justify-center.space-x-4>.paginate_button {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        margin: 0.125rem;
    }
}

div#videoTable_length label {
    font-size: 9pt;
}

/* Dark mode */
[data-theme="dark"] .bg-neutral-950 {
    background-color: rgb(10, 10, 10);
}

[data-theme="dark"] .bg-neutral-800 {
    background-color: rgb(38, 38, 38);
}

[data-theme="dark"] .bg-neutral-700 {
    background-color: rgb(64, 64, 64);
}

[data-theme="dark"] .text-white {
    color: #f8fafc;
}

[data-theme="dark"] .text-neutral-100 {
    color: #f8fafc;
}

[data-theme="dark"] .text-neutral-300 {
    color: #a1a1aa;
}

[data-theme="dark"] .bg-neutral-900 {
    background-color: rgb(23, 23, 23);
}

[data-theme="dark"] .border-neutral-800 {
    border-color: rgb(38, 38, 38);
}

[data-theme="dark"] .hover\\:bg-neutral-700:hover {
    background-color: rgb(64, 64, 64);
}

[data-theme="dark"] .border-white {
    border-color: #e5e7eb;
}


/* Light mode */
[data-theme="light"] .bg-neutral-950 {
    background-color: #f8fafc;
}

[data-theme="light"] .bg-neutral-800 {
    background-color: rgb(229, 229, 229);
}

[data-theme="light"] .bg-neutral-700 {
    background-color: rgb(212, 212, 212);
}

[data-theme="light"] .text-white {
    color: rgb(23, 23, 23);
}

[data-theme="light"] .text-neutral-100 {
    color: rgb(23, 23, 23);
}

[data-theme="light"] .text-neutral-300 {
    color: rgb(23, 23, 23);
}

[data-theme="light"] .bg-neutral-900 {
    background-color: #e5e7eb;
}

[data-theme="light"] .border-neutral-800 {
    border-color: rgba(38, 38, 38, .2);
}

[data-theme="light"] .hover\\:bg-neutral-700:hover {
    background-color: #cbd5e1;
}

[data-theme="light"] .border-white {
    border-color: #18181b;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000000;
    /* Nastavte barvu spinneru */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #fff;
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #ccc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-track {
    margin-left: 0;
}

/* swiper */

main>div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
}

main>div p {
    line-height: 1.6;
}

.swiper {
    width: 100%;
    padding-top: 3.125rem;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    bottom: 1.25rem !important;
}

.swiper-slide {
    width: 18.75rem;
    height: 23.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    border-radius: .5rem;
}

.swiper-slide h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    background-color: rgb(23, 23, 23);
    border-radius:.5rem;
    padding: 8px 16px;
}

.swiper-slide p {
    color: #dadada;
    font-weight: 300;
    padding: 0 1.563rem;
    line-height: 1.6;
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 0.625rem;
}

.swiper-slide-active div {
    display: block;
    opacity: 1;
    border-radius: .5rem;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

@media screen and (min-width: 48rem) {
    main {
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 93.75rem) {
    .swiper {
        width: 85%;
    }
}

/* end */