/* /assets/css/style.css */
:root {
    --tivit-blue: #720003;
    --tivit-lightblue: #08023d;
    --tivit-grey: #f4f7f9;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--tivit-grey);
    color: var(--text-dark);
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    color: var(--tivit-blue);
    border-bottom: 3px solid var(--tivit-lightblue);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.match-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
    transition: transform 0.2s;
}
.match-card:hover {
    transform: translateY(-5px);
}

.match-date {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    font-weight: bold;
    width: 35%;
}
.team:last-child {
    justify-content: flex-end;
}
.flag {
    font-size: 2em;
}

.score-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-input input {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--tivit-blue);
}
.score-input input:focus {
    outline: none;
    border-color: var(--tivit-lightblue);
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background-color: var(--tivit-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #0041a0;
}
