.container {
    width:90%;
    margin:auto;
}

.table th,
.table td {
    border:1px solid #ddd;
    padding:12px;
}


.btn {
    padding:8px 15px;
    border-radius:5px;
    text-decoration:none;
    display:inline-block;
    margin:5px;
}


.btn-success {
    background:#2e7d32;
    color:white;
}


.btn-primary {
    background:#1565c0;
    color:white;
}


.match-card {
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;
}

.teams {
    display:flex;
    justify-content:center;
    gap:40px;
    font-size:20px;
}


input {
    width:70px;
    padding:8px;
    margin:5px;
}

body {
    background:#f5f5f5;
}



.card {
    border-radius:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    margin-bottom:20px;
}


.team-card {
    background:white;
    padding:15px;
    border-radius:12px;
    margin:10px;
}

.bracket {
    display:flex;
    gap:30px;
    overflow-x:auto;
}

.round {
    min-width:250px;
}

.match {
    background:white;
    border-radius:10px;
    padding:15px;
    margin-bottom:20px;
}

/* ADMIN PANEL */


.admin-container {
    padding:30px;
}

/* STATUS BOX */

.status-card {
    padding:25px;
    border-radius:20px;
    text-align:center;
    font-size:20px;
    font-weight:bold;
}

.status-register {
    background:
    linear-gradient(
    135deg,

    #330000,

    #990000

    );
}

.status-running {
    background:
    linear-gradient(
    135deg,
    #003300,

    #009933

    );
}

.status-finished {
    background:
    linear-gradient(
    135deg,

    #330033,

    #990099

    );
}

/* TABLE */


table {
    width:100%;
    background:#111;
    border-radius:15px;
    overflow:hidden;
}

th {
    background:#990000;
    padding:15px;
}

td {
    padding:15px;
    border-bottom:
    1px solid #333;
}

tr:hover {
    background:#1f0000;
}

/* ADMIN BUTTON GROUP */
.action-buttons {
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.navbar {
    background:
        linear-gradient(90deg,
            #000000,
            #8b0000);

    padding: 15px 30px;
    box-shadow:
        0 5px 20px rgba(255, 0, 0, .3);
}

.navbar-brand {
    font-size: 26px;
    font-weight: 800;
    color: white;
}

.navbar-brand span {
    color: #ff1a1a;
}

a {
    color: #f5f5f5;
    text-decoration: none;
}

a:hover {
    color: #000000;
}