:root {
    --primary-black: #121212;
    --secondary-black: #1e1e1e;
    --accent-black: #2a2a2a;
    --primary-white: #ffffff;
    --secondary-white: #f0f0f0;
    --accent-white: #e0e0e0;
    --accent-color: #ff3b30;
    --border-color: #333333;
    --goal-color: #4CAF50;
    --assist-color: #2196F3;
    --card-color: #FFC107;
    --minutes-color: #9C27B0;
    --progress-color: #00BCD4;
}

:root[data-theme="light"] {
    --primary-black: #f5f7fb;
    --secondary-black: #ffffff;
    --accent-black: #ebf0f8;
    --primary-white: #121926;
    --secondary-white: #2f3a4d;
    --accent-white: #4d5a72;
    --border-color: #d1d9e7;
    --goal-color: #2e9f58;
    --assist-color: #1e73c5;
    --card-color: #d89b06;
    --minutes-color: #7a31bb;
    --progress-color: #0ca6bf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.container,
.section-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container,
    .section-grid {
        grid-template-columns: 1fr;
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.theme-toggle-btn {
    background: var(--secondary-black);
    border: 1px solid var(--border-color);
    color: var(--primary-white);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle-btn:hover {
    background: var(--accent-black);
    transform: translateY(-1px);
}

.theme-toggle-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 127, 227, 0.28);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-white);
    letter-spacing: 1px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-btn {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Section */

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.player-info {
    flex: 1;
}

.player-position {
    font-size: 18px;
    color: var(--accent-white);
    margin-bottom: 15px;
    font-weight: 500;
}

.player-team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--secondary-white);
    margin-bottom: 20px;
}

.my-bot-logo {
    width: clamp(80px, 20vw, 146px);
    aspect-ratio: 146 / 51;
    position: relative;
    flex: 0 0 auto;
}

.my-bot-logo img.team-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.my-bot-logo img.team-logo--light {
    opacity: 0;
    pointer-events: none;
}

:root[data-theme="light"] .my-bot-logo img.team-logo--light {
    opacity: 1;
    pointer-events: auto;
}

:root[data-theme="light"] .my-bot-logo img.team-logo--dark {
    opacity: 0;
    pointer-events: none;
}

.team-logo {
    width: 30px;
    height: 30px;
}

.physical-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background-color: var(--accent-black);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--accent-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    background-color: var(--accent-black);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-white);
    border-bottom: 3px solid transparent;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    background-color: var(--secondary-black);
    color: var(--primary-white);
    border-bottom: 3px solid var(--primary-white);
}

/* Content Sections */
.main-content > .content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.main-content > .content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-white);
    padding-bottom: 10px;
    /* border-bottom: 1px solid var(--border-color); */
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.stats-card {
    background-color: var(--secondary-black);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stats-card:hover {
    background-color: var(--accent-black);
}

.stats-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-white);
}

.stats-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-white);
}

.stats-description {
    font-size: 16px;
    color: var(--accent-white);
}

.note-item {
    background-color: var(--secondary-black);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary-white);
    border: 1px solid var(--border-color);
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.note-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-white);
}

.note-date {
    font-size: 14px;
    color: var(--accent-white);
}

.note-content {
    color: var(--secondary-white);
    line-height: 1.5;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--accent-white);
    font-style: italic;
}

/* Progress Section */
.charts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
}

.chart-card {
    background-color: var(--secondary-black);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-white);
}

.chart-period {
    font-size: 14px;
    color: var(--accent-white);
    background-color: var(--accent-black);
    padding: 5px 12px;
    border-radius: 20px;
}

.chart-wrapper {
    position: relative;
    height: 300px;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.progress-stat {
    background-color: var(--accent-black);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
}

.progress-stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-white);
}

.progress-stat-label {
    font-size: 14px;
    color: var(--accent-white);
    text-align: center;
    margin-bottom: 10px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-goal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: var(--accent-white);
}

/* Matches Section */
.matches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.match-item {
    background-color: var(--secondary-black);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.match-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.team-logo-small {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.team-name {
    font-size: 14px;
    text-align: center;
    color: var(--primary-white);
    font-weight: 500;
}

.match-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-white);
    padding: 0 15px;
}

.match-details {
    text-align: right;
}

.match-date {
    font-size: 14px;
    color: var(--accent-white);
    margin-bottom: 5px;
}

.match-result {
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.win {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.loss {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.draw {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

/* Match Statistics */
.match-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.match-stats-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-stats-title i {
    font-size: 14px;
}

.match-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .match-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .match-stats-grid {
        grid-template-columns: 1fr;
    }
}

.match-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--accent-black);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.match-stat-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-stat-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.match-stat-goal .match-stat-icon {
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--goal-color);
}

.match-stat-assist .match-stat-icon {
    background-color: rgba(33, 150, 243, 0.15);
    color: var(--assist-color);
}

.match-stat-card .match-stat-icon {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--card-color);
}

.match-stat-minutes .match-stat-icon {
    background-color: rgba(156, 39, 176, 0.15);
    color: var(--minutes-color);
}

.match-stat-name {
    font-size: 14px;
    color: var(--accent-white);
}

.match-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-white);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--accent-white);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.footer-feedback-btn {
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: 14px;
    justify-self: start;
}

.footer-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.footer-socials-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-socials-title {
    margin: 0;
    font-size: 13px;
    color: var(--accent-white);
}

.footer-actions-spacer {
    visibility: hidden;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--secondary-black);
    color: var(--accent-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: var(--accent-black);
    color: var(--primary-white);
    transform: translateY(-1px);
}

.footer-social-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 127, 227, 0.28);
}

@media (max-width: 700px) {
    .footer-actions {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-feedback-btn {
        justify-self: start;
    }

    .footer-actions-spacer {
        display: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
}

.btn-primary {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: var(--accent-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--accent-black);
}

/* Custom dropdown filters */
.notes-filters,
.matches-filter {
    position: relative;
}

.custom-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    border: 0;
    padding: 0;
    margin: 0;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    width: 100%;
    min-height: 48px;
    padding: 12px 44px 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #eceff3 100%);
    color: #101216;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.custom-dropdown-trigger:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 22px rgba(0, 0, 0, 0.24);
}

.custom-dropdown-trigger:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.26);
}

.custom-dropdown-label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(17, 18, 22, 0.75);
    border-bottom: 2px solid rgba(17, 18, 22, 0.75);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
}

.custom-dropdown.is-open .custom-dropdown-arrow {
    transform: translateY(-35%) rotate(-135deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    background: linear-gradient(160deg, #1b1f27 0%, #13161d 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
    display: none;
    max-height: 280px;
    overflow-y: auto;
}

.custom-dropdown.is-open .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-option {
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #e8edf6;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-dropdown-option:hover {
    background: rgba(255, 255, 255, 0.12);
}

.custom-dropdown-option.is-selected {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.custom-dropdown-option.is-disabled {
    opacity: 0.45;
    cursor: default;
}

.custom-date-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    border: 0;
    padding: 0;
    margin: 0;
}

.custom-date-picker {
    position: relative;
    width: 100%;
}

.custom-date-trigger {
    width: 100%;
    min-height: 48px;
    padding: 12px 44px 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #eceff3 100%);
    color: #101216;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.custom-date-trigger:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 22px rgba(0, 0, 0, 0.24);
}

.custom-date-trigger:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.26);
}

.custom-date-label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-date-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.custom-date-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 35;
    background: linear-gradient(160deg, #1b1f27 0%, #13161d 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
    display: none;
}

.custom-date-picker.is-open .custom-date-panel {
    display: block;
}

.custom-date-header {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.custom-date-month {
    text-align: center;
    color: #f3f5f9;
    font-size: 14px;
    font-weight: 700;
}

.custom-date-nav {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    color: #f4f6fb;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.custom-date-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.custom-date-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-bottom: 6px;
}

.custom-date-weekdays span {
    text-align: center;
    color: rgba(232, 237, 246, 0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0;
}

.custom-date-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.custom-date-day {
    border: 0;
    border-radius: 8px;
    min-height: 34px;
    background: transparent;
    color: #e8edf6;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.custom-date-day:hover {
    background: rgba(255, 255, 255, 0.12);
}

.custom-date-day.is-selected {
    background: #ffffff;
    color: #11131a;
}

.custom-date-day.is-today {
    outline: 1px solid rgba(255, 255, 255, 0.45);
}

.custom-date-day.is-empty {
    pointer-events: none;
    opacity: 0;
}

.app-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(5, 8, 14, 0.64);
    opacity: 0;
    transition: opacity 0.14s ease;
}

.app-confirm-overlay.is-visible {
    opacity: 1;
}

.app-confirm-modal {
    width: min(440px, 100%);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(160deg, #1a1f29 0%, #12161e 100%);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.app-confirm-title {
    margin: 0 0 8px;
    color: #f1f5ff;
    font-size: 19px;
    font-weight: 700;
}

.app-confirm-message {
    margin: 0;
    color: rgba(232, 238, 248, 0.82);
    font-size: 14px;
    line-height: 1.45;
}

.app-confirm-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.app-confirm-btn {
    flex: 1;
    border: 0;
    border-radius: 10px;
    min-height: 42px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.app-confirm-btn:hover {
    transform: translateY(-1px);
}

.app-confirm-cancel {
    color: #f4f6fb;
    background: rgba(255, 255, 255, 0.12);
}

.app-confirm-accept {
    color: #11141c;
    background: #f5f7fb;
}

.app-confirm-danger {
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Additional Styles for Match Details */
.match-competition {
    font-size: 12px;
    color: var(--accent-white);
    margin-top: 5px;
}

.match-venue {
    font-size: 12px;
    color: var(--accent-white);
    margin-top: 2px;
}

/* Progress Comparison */
.comparison-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .comparison-container {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    background-color: var(--secondary-black);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.comparison-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 20px;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--accent-black);
    border-radius: 8px;
}

.comparison-label {
    font-size: 16px;
    color: var(--accent-white);
}

.comparison-values {
    display: flex;
    gap: 20px;
}

.comparison-value {
    font-size: 18px;
    font-weight: 600;
}

.comparison-value.current {
    color: var(--primary-white);
}

.comparison-value.previous {
    color: var(--accent-white);
}

.comparison-change {
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.change-positive {
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--goal-color);
}

.change-negative {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}
