/* Datei: style.css */
#mcc-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#mcc-modal {
    background: #fff;
    color: #333;
    padding: 25px;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.mcc-row {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}

.mcc-details-content {
    display: none;
    padding: 10px;
    font-size: 12px;
    background: rgba(0,0,0,0.03);
    margin-bottom: 10px;
    border-radius: 4px;
}

#mcc-revoke-button {
    transition: transform 0.2s;
}
#mcc-revoke-button:hover {
    transform: scale(1.1);
}