/* Buttons CSS */

/* Buttons mit Bildinhalt (z.B. Avatare oder Logos) */
.image-button {
    padding: 0;
    border: 0px;
    background-color: transparent;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bild im Button, skaliert/zentriert */
.image-button img {
    width: 90%;
    height: 90%;
    object-fit: fill;
}

/* Logo-Button, größere Logos */
.Logo-button {
    padding: 0;
    border: 0px;
    background-color: transparent;
    cursor: pointer;
    width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo im Button, skaliert/zentriert */
.Logo-button img {
    width: 90%;
    height: 90%;
    object-fit: fill;
}

/* Icon-Darstellung im Button */
.icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Button mit Icon als Hintergrundbild */
.icon-button {
    padding: 15px 15px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 50px;
}

/* Verschiedene Icon-Buttons mit Bildern */
.icon-button.exclaim {
    background-image: url('public/assets/ExclaimLogo.png');
}

.icon-button.no {
    background-image: url('public/assets/NoLogo.png');
}

.icon-button.question {
    background-image: url('public/assets/QuestionLogo.png');
}

.icon-button.yes {
    background-image: url('public/assets/YesLogo.png');
}

.icon-button.person {
    background-image: url('public/assets/PersonLogo.png');
}

/* Haupt- und Menü-Buttons, abgerundetes Design */
.dashboard-button,
.menu-button {
    width: 100%;
    padding: 15px 30px;
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    background-color: transparent;
    color: #F2F4FF;
    border: 3px solid #F2F4FF;
    border-radius: 45px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover-Effekt für Haupt- und Menü-Buttons */
.dashboard-button:hover,
.menu-button:hover {
    background-color: #F2F4FF;
    color: #27292C;
}

/* Navigation-Buttons, zentriert, mit Abstand */
.navigation-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
}

/* Einzelne Navigation-Buttons */
.navigation-buttons button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #000000;
    color: #000000;
    border-radius: 8px;
    cursor: pointer;
}

/* Hover-Effekt für Navigation-Buttons */
.navigation-buttons button:hover {
    background-color: rgba(0, 123, 255, 0.5);
}

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 850px) {

    /* Haupt- und Menü-Buttons, kleiner & flexibles Layout */
    .dashboard-button,
    .menu-button {
        text-decoration: none;
        /* Unterstreichung entfernen */
        width: 100%;
        padding: 10px 15px;
        margin: 5px 0;
        font-size: 24px;
        border-radius: 45px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dashboard-button .icon,
    .menu-button .icon {
        text-decoration: none;
        /* Unterstreichung entfernen */
        margin-right: 0;
        margin-bottom: 5px;
    }
}