﻿
body {
    background: #0d1b2a url() no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.card-container {
    background: rgba(0,0,0,0.6) url('/assets/images/body_bg.png') no-repeat center center;
    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;
}

.match-card a {
    text-align: center;
    text-decoration: none;
}

    .match-card a:hover {
        background: #dadada;
    }

.match-card img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 30px;
}

.match-card .match-info {
    flex-grow: 1;
    padding-right: 30px;
}

    .match-card .match-info p {
        margin: 0;
        font-size: 1rem;
    }

.match-card .more-options {
    color: #6c757d;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

    .match-card .more-options:hover {
        background-color: #cdcdcd;
    }
