.help-request-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.help-request-form label {
    display: block;
    margin-bottom: 5px;
}

.help-request-form input,
.help-request-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}


.custom-notice {
    color: red;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.custom-notice::before {
    content: "⚠️ ";
}

/* Jelzések oldal stílusai */
.symbiora-notifications-container {
    text-align: center;
    margin-top: 20px;
}

.symbiora-menu-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.symbiora-menu-item {
    width: 300px;
    margin: 0 auto;
}

.symbiora-menu-box {
    background-color: #f1f1f1;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.symbiora-menu-box:hover {
    background-color: #0073aa;
    color: #fff;
}

.symbiora-menu-box h2 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.symbiora-menu-link {
    text-decoration: none;
    color: inherit;
}

.symbiora-menu-box:hover h2 {
    color: #fff;
}

.success-message {
    color: red;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid red;
    padding: 10px;
    background-color: #ffe6e6;
    border-radius: 5px;
    margin-top: 10px;
}