.eidas-install-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.eidas-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.eidas-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.eidas-modal-content.dark {
    background: #2d3748;
    color: white;
}

.eidas-modal-content h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.eidas-modal-content p {
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.eidas-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.eidas-btn-primary,
.eidas-btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.eidas-btn-primary {
    background: #3182ce;
    color: white;
}

.eidas-btn-primary:hover {
    background: #2c5aa0;
}

.eidas-btn-secondary {
    background: #e2e8f0;
    color: #2d3748;
}

.eidas-btn-secondary:hover {
    background: #cbd5e0;
}
