/* --------------------------------------------
   MATCH DETAILS POPUP PANEL
--------------------------------------------- */

.match-details {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 360px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.match-details.hidden {
    display: none;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

#md-title {
    font-size: 20px;
    margin: 0;
}

.close-btn {
    border: none;
    background: #ff5c5c;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.close-btn:hover {
    background: #ff3333;
}

#md-body {
    font-size: 15px;
}

.team-header {
    margin-top: 12px;
    font-weight: bold;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
