    .selection-container {
        background-color: #c0a674;
        color: black;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .selection-box {
        background-color: #ffffff;
        padding: 50px;
        border-radius: 20px;
        border: 5px solid #ffffff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        text-align: center;
        width: 90%;
        max-width: 600px;
    }
    
    .selection-box h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 30px;
        color: #c0a674;
    }
    
    /* GEMEINSAM: Buttons und a.btn */
    .selection-box button,
    .selection-box a.btn {
        margin: 10px 0;
        font-size: 1.8rem;
        padding: 25px;
        border-radius: 15px;
        font-weight: bold;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .selection-box .btn-success {
        background-color: #c0a674;
        color: white;
        border: 2px solid black;
    }
    
    .selection-box .btn-success:hover {
        background-color: #a0a0a0;
        border-color: #c0a674;
    }
    
    .selection-box .btn-primary {
        background-color: #c0a674;
        color: white;
        border: 2px solid black;
    }
    
    .selection-box .btn-primary:hover {
        background-color: #a0a0a0;
        border-color: #c0a674;
    }
    
    .selection-box img {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    
    /* Responsive Anpassungen für Mobile */
    @media (max-width: 768px) {
        .selection-box {
            padding: 30px;
        }
    
        .selection-box button,
        .selection-box a.btn {
            font-size: 2rem;
            padding: 30px;
        }
    
        .selection-box img {
            width: 90px;
            height: 90px;
        }
    }
    