﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: white;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.card {
    cursor: auto !important;
    border-radius: 0px !important;
    margin: 0 !important;
}

.buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

    .buttons button {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 1.5rem;
        padding: 10px 20px;
        cursor: pointer;
        pointer-events: all;
    }

.pagination {
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

    .pagination a {
        display: inline-block;
        margin: 0 5px;
        padding: 5px 10px;
        text-decoration: none;
        color: #333;
        border: 1px solid transparent;
        border-radius: 5px;
        cursor: pointer;
        background-color: #fcfcfc;
        min-height: 10px;
        min-width: 30px;
        border-color: #bcc2c2;
    }

        .pagination a.active {
            font-weight: bold;
            border-color: #333;
            background-color: #fcfcfc;
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
        }
