/* ----------------------------------------------------- */
/*        CSS: Extension club-finder                     */
/* ----------------------------------------------------- */

body,h1,h2,h3,h4,h5,h6,p,th,tr,td {
    color: #333333;
    font-family: Arial, Helvetica, sans-serif !important;
}
h1 {
    color: #76001b !important;
    font-family: Arial, Helvetica, sans-serif !important;
}

a {
    text-decoration: none;
    color: #76001b !important;
}

main h3 {
    color: #76001b !important;
}

/* Clubs Search */
.clubs-search input, .clubs-search textarea.form-control, .clubs-search select {
    max-width: 400px;
    margin: 10px 0 0 0;
    border: 1px solid #76001b;
    color: #333333;
}

/* search button */
.button {
    background-color: #76001b !important;
    border: none;
    color: #ffffff;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.button-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* clubs-table */

.clubs-table td {
    padding: 0 20px 20px 0;
    vertical-align: top;
}

.club-detail {
    display: flex;
}

.club-detail-left {
    width: 60%;
}

.club-detail-right {
    margin-left: 5%;
    width: 35%;
}

.club-img img {
    max-width: 200px;
    height: auto;
}

.reviews {
    margin: 0 0 20px 0;
}

.reviews td {
    vertical-align: top;
    padding-right: 20px;
}

.youtubeid-wrapper {
    width: 600px;
    height: 418px;
    padding: 40px 0;
}

/* Slider */

.images {
    position:relative;
}
.slide {
    width: 100%;
    display: none;
}

.slide >img {
    height: 100%;
    width: 100%;
    display: block;
    animation: transition 2s;
}

.slide_visible {
    display: block;
}

@keyframes transition{
    from {opacity: 0.2;}
    to {opacity: 1;}
}

.slide_next, .slide_back {
    color: #333333;
    font-size: 1.7em; /* Pfeilgröße */
    line-height: 0.7em; /* Höhe für den Pfeil */
    position: absolute; /* Pfeile absolut positionieren */
    cursor: pointer;
}

.slide_next {
    right: 10px;
}

.slide_back {
    right: 40px;
}

/* Breakpoint */

@media (max-width:1000px){
    .club-detail-left {
        width:90%;
    }

    .club-detail-right {
        width:90%;
        margin-left: 0;
    }

    .club-detail {
        display: block;
        margin-bottom: 40px;
    }

    .clubs-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .clubs-table th {
        display: none;
    }

    .clubs-table td {
        width: 100%;
        padding: 0;
    }

    .clubs-table td img {
        padding-top: 5px;
        height: 90%;
        width: 90%;
        max-width: 300px;
    }
    .clubs-table td:first-child {
        font-size: 1.4em;
    }

    .slide_next {
        left: 40px;
    }

    .slide_back {
        left: 10px;
    }
}

