/* ===========================================
   HELP BUTTON FOR EDIT & CLASSIFY MODAL
   Add to your CSS or include as separate file
   =========================================== */

.modal-help-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    position: absolute;
    right: 60px; /* Position to the left of close button */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.modal-help-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-help-button:active {
    transform: translateY(-50%) scale(0.98);
}

.modal-help-button .help-icon {
    font-size: 1.1em;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Make sure modal header has position relative for absolute positioning */
.modal-header {
    position: relative;
}

/* Adjust close button positioning if needed */
.modal-header .close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile responsiveness for help button */
@media (max-width: 768px) {
    .modal-help-button {
        font-size: 0.85rem;
        padding: 6px 12px;
        right: 50px;
    }
}
