#mrbd-modal {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.6); 
    z-index: 999999; /* Zvýšeno pro jistotu */
    display: flex;
    align-items: center;
    justify-content: center;
}

#mrbd-modal-content {
    background: #fff; 
    padding: 30px; 
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    font-family: sans-serif;
}

#mrbd-modal h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

#mrbd-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

#mrbd-modal-close:hover {
    color: #000;
}

.mrbd-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.mrbd-label {
    font-weight: 600;
    width: 35%;
}

.mrbd-stars {
    color: #e5c100;
    font-size: 18px;
    letter-spacing: 2px;
}

.mrbd-val {
    font-size: 13px;
    color: #666;
    width: 15%;
    text-align: right;
}