#switch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.switch-overlay-content {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    width: min(700px, 92vw);
}

.switch-overlay-close-container {
    position: relative;
    width: 100%;
}

.switch-overlay-close {
    position: absolute;
    right: calc(-1 * var(--behnke-basic, 8px));
    top: calc(-1 * var(--behnke-basic, 8px));
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.switch-overlay-close:hover {
    background-color: var(--behnke-hover, #e0e0e0);
}

.switch-overlay-content h2 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.switch-overlay-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.switch-overlay-buttons div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--behnke-basic, 8px);
}

.switch-overlay-buttons div img {
    max-width: 180px;
    max-height: 80px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.switch-overlay-buttons button {
    margin: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    background: var(--behnke-basic-bg, #f0f0f0);
}

.switch-overlay-buttons button:hover {
    background: var(--behnke-hover, #ddd);
    transform: scale(1.05);
}

.switch-overlay-info {
    margin-top: 1.5rem;
}
