/* A menügomb stílusa */
.logout-all-btn {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #ff4d4d !important;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin: 8px 12px;
    border: 1px dashed #e74c3c;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}

/* Modál Háttér */
.logout-modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

/* Modál Ablak */
.logout-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 25px;
    border-radius: 15px;
    width: 85%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.logout-modal-content h2 { color: #d93025; margin-bottom: 15px; }
.logout-modal-content p { color: #333; margin-bottom: 25px; line-height: 1.5; }

/* Modál Gombok */
.modal-btn-group { display: flex; gap: 10px; justify-content: center; }

.btn-confirm {
    background: #d93025; color: #fff; border: none;
    padding: 12px 20px; border-radius: 8px; font-weight: bold; cursor: pointer;
}

.btn-cancel {
    background: #ccc; color: #333; border: none;
    padding: 12px 20px; border-radius: 8px; font-weight: bold; cursor: pointer;
}
