/* Overlay für das Modal */
.flirt-notification-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    z-index: 9999;
    padding: 20px; /* Padding für kleinere Bildschirme */
    box-sizing: border-box;
}

/* Box für das Modal */
.flirt-notification-modal-box {
    background-color: #ffffff;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    border-radius: 0px; /* Keine abgerundeten Ecken */
    box-sizing: border-box;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: row; /* Logo und Text nebeneinander, auch auf Mobilgeräten */
    align-items: center; /* Vertikal zentrieren */
    justify-content: flex-start; /* Inhalt am Anfang ausrichten */
}

/* Logo im Modal */
.flirt-notification-logo {
    width: 60px;
    height: 60px;
    margin-right: 15px; /* Abstand zwischen Logo und Text */
}

/* Textbereich */
.flirt-notification-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

/* Titel des Modals */
.flirt-notification-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 5px;
    text-align: left;
}

/* Untertext */
.flirt-notification-subtext {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    text-align: left;
}

/* Container für die Buttons */
.flirt-notification-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Abstand zwischen den Buttons */
}

/* Buttons */
.flirt-notification-btn {
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid;
    border-radius: 0px; /* Keine abgerundeten Ecken */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 48%;
}

/* Ablehnen-Button */
.flirt-notification-btn-abort {
    background-color: #ffffff;
    color: var(--secondary-main-color);;
    border-color: var(--secondary-main-color);;
}

.flirt-notification-btn-abort:hover {
    background-color: #e9ecef;
}

/* Annehmen-Button */
.flirt-notification-btn-confirm {
    background-color: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
}

.flirt-notification-btn-confirm:hover {
    background-color: var(--main-hover-color);
}

/* Responsive Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    .flirt-notification-modal-box {
        flex-direction: row; /* Logo und Text auch auf mobilen Geräten nebeneinander */
        align-items: center; /* Vertikal zentriert */
    }

    .flirt-notification-logo {
        margin-bottom: 0; /* Kein Abstand nach unten */
        margin-right: 15px; /* Abstand rechts für das Layout */
    }

    .flirt-notification-btn {
        width: 100%; /* Buttons nehmen die volle Breite ein */
        margin-top: 10px;
    }
}