.popup-mcomp-available-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 9999;
    justify-content: center;
    align-items: center;
}


.popup-mcomp-available {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    text-align: center;
    font-family: Arial, sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}


.popup-mcomp-available h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}


.popup-mcomp-available table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.popup-mcomp-available table th,
.popup-mcomp-available table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.popup-mcomp-available table th {
    background: #f3f3f3;
    font-weight: bold;
}

.popup-mcomp-available table tr:hover {
    background: #f9f9f9;
}

/* Zavírací tlačítko */
.popup-mcomp-available .popup-mcomp-available-close {
    display: inline;
    margin-top: 20px;
    padding: 10px 20px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-mcomp-available .popup-mcomp-available-close:hover {
    background-color: #2a2a2a;
}

.popup-link-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #c80527;
    text-decoration: none;
    padding: 8px 12px;
    background-color: #ebf8f8;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #00b3b5;
}

/* Animace */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
