/* styles/complaints.css */
/* СТИЛИ ДЛЯ ФОРМЫ ЖАЛОБЫ */
#complaint-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Полупрозрачный чёрный фон */
}
#complaint-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
#complaint-modal-content {
    background-color: var(--secondary); /* Чёрный фон */
    margin: auto;
    padding: 20px;
    border: 1px solid var(--admin-border); /* Жёлтая граница */
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
#complaint-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
#complaint-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light); /* Белый цвет */
}
#complaint-modal-close {
    background: none;
    border: none;
    color: var(--light); /* Белый цвет */
    font-size: 1.5rem;
    cursor: pointer;
}
/* Стили для меню действий в профиле */
.profile-actions {
    position: absolute;
    top: 20px;
    right: 20px;
}
.btn-action-menu {
    background: rgba(0, 0, 0, 0.7); /* Чёрный с прозрачностью */
    border: 1px solid rgba(255, 235, 59, 0.3); /* Жёлтая граница */
    color: var(--light); /* Белый цвет */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.btn-action-menu:hover {
    background: rgba(255, 235, 59, 0.2); /* Лёгкий жёлтый фон */
    border-color: #ffeb3b; /* Жёлтая граница */
}
.action-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95); /* Тёмно-чёрный фон */
    border: 1px solid rgba(255, 235, 59, 0.3); /* Жёлтая граница */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    min-width: 180px;
    z-index: 100;
    display: none; /* Скрыто по умолчанию */
}
.action-menu-dropdown.show {
    display: block;
}
.action-menu-item {
    background: none;
    border: none;
    color: var(--light); /* Белый цвет */
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}
.action-menu-item:hover {
    background: rgba(255, 235, 59, 0.2); /* Лёгкий жёлтый фон */
}