﻿
body {
    background: #0d1b2a url() no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-container {
    background: rgba(0,0,0,0.6) url('/assets/images/body_bg.png');
    background-size: cover;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.link-btn {
    background: white;
    color: black;
    border-radius: 30px;
    padding: 12px;
    margin: 10px 0;
    text-decoration: none;
    display: block;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

    .link-btn:hover {
        background: #f1f1f1;
        transform: translateY(-2px);
    }

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-card a {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: transform 0.2s;
    color: rgb(33, 97, 140); /* Bootstrap primary color */
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
}

.match-banner-card a {
    display: block;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: transform 0.2s;
    color: rgb(33, 97, 140); /* Bootstrap primary color */
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
}

.match-banner-card img {
    width: 100%;
    margin-right: 15px;
    border-radius: 30px;
}


.match-card a:hover {
    background: #dadada;
}

.match-banner-card a:hover {
    background: #dadada;
}


.match-card img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 30px;
}

.match-banner-card .match-info {
    padding-top: 10px;
}

.match-card .match-info {
    flex-grow: 1;
    padding-right: 30px;
}

    .match-card .match-info p {
        margin: 0;
        font-size: 1rem;
    }



.match-banner-card .more-options {
    color: #6c757d;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: 22px
}

    .match-banner-card .more-options:hover {
        background-color: #cdcdcd;
    }

.match-card .more-options {
    color: #6c757d;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 22px
}

    .match-card .more-options:hover {
        background-color: #cdcdcd;
    }

p {
    font-weight: 600;
}

#vodacomBullsHeader {
    font-weight: bold;
    font-size: 24px;
}

.social-container {
    margin-top: 15px;
}

.social-icon {
    font-size: 24px;
    display: inline-block;
    transition: transform 0.2s ease;
}

    .social-icon:hover {
        transform: scale(1.1);
        color: #E1306C;
    }

.footer-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.footer-options {
    display: flex;
    gap: 10px;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

    .footer-options li:hover {
        border-bottom: solid 1px white;
    }

/* Modal Styling */
.cookie-modal {
    border-radius: 25px;
    padding: 15px;
    color: #333;
}

.cookie-intro {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.cookie-section {
    border-top: 1px solid #eee;
    cursor: pointer;
}

/* Custom Toggle Switch (iOS Style) */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #007bff; /* Matching the blue in your image */
}

    input:checked + .slider:before {
        transform: translateX(20px);
    }

/* Pill Buttons */
.btn-pill {
    border-radius: 50px;
    padding: 10px;
    font-weight: 500;
    border-color: #333;
}

    .btn-pill:hover {
        background-color: #333;
        color: #fff;
    }
