/* notif-style.css */
.match-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    width: 320px;
    max-width: calc(100vw - 40px);
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideInRight 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards, fadeOut 0.5s ease 3.5s forwards;
    overflow: hidden;
    border-left: 5px solid #ff4757;
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; transform: translateX(120%); }
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.league-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ff4757;
    padding: 2px 6px;
    border-radius: 20px;
}

.close-toast {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}
.close-toast:hover { opacity: 1; }

.toast-body {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
}

.teams-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 50px;
}

.logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 4px;
}

.match-info { flex: 1; }

.teams-names {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.status-badge {
    font-size: 0.7rem;
    background: #2ecc71;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}