/* ===================== */
/* Flag Context Menu */
/* ===================== */

/* Context Menu */
.flag-context-menu {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    min-width: 280px;
    max-width: 400px;
    border: 1px solid #e4e6eb;
}

.flag-menu-header {
    padding: 12px 16px;
    background: #f0f2f5;
    border-bottom: 1px solid #e4e6eb;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    border-radius: 8px 8px 0 0;
}

.flag-menu-content {
    padding: 16px;
}

.flag-menu-content label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    color: #444;
}

.flag-menu-content strong {
    display: block;
    margin-bottom: 4px;
}

.flag-menu-content select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
}

.flag-menu-content textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
}

.flag-menu-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.flag-menu-actions button {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit {
    background: #ff6b35;
    color: white;
}

.btn-submit:hover {
    background: #e55a28;
}

.btn-cancel {
    background: #e4e6eb;
    color: #333;
}

.btn-cancel:hover {
    background: #d8dadf;
}

/* Confirmation Toast */
.flag-confirmation {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.flag-confirmation.show {
    opacity: 1;
    transform: translateY(0);
}
