/* Report Modal Styles */
.report-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.report-modal-content {
    background: #2a2a2a;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease-out;
    border: 1px solid #444;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.report-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #444;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 12px 12px 0 0;
}

.report-modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.report-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.report-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.report-modal-body {
    padding: 20px;
    color: #ffffff;
}

.report-field {
    margin-bottom: 20px;
}

.report-field label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.report-field input,
.report-field textarea,
.report-field select {
    width: 100%;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 6px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.report-field input:focus,
.report-field textarea:focus,
.report-field select:focus {
    outline: none;
    border-color: #ff6b6b;
}

.report-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.report-field select {
    cursor: pointer;
}

.report-field input::placeholder,
.report-field textarea::placeholder {
    color: #888;
}

.report-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.report-cancel-btn,
.report-submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 100px;
}

.report-cancel-btn {
    background: #666;
    color: white;
}

.report-cancel-btn:hover {
    background: #777;
}

.report-submit-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.report-submit-btn:hover {
    background: linear-gradient(135deg, #ee5a24, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
}

.report-submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading state */
.report-loading {
    opacity: 0.7;
    pointer-events: none;
}

.report-loading .report-submit-btn::after {
    content: " ⏳";
}

/* Success state */
.report-success {
    background: linear-gradient(135deg, #00b894, #00a085);
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive design */
@media (max-width: 600px) {
    .report-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .report-modal-header {
        padding: 15px;
    }
    
    .report-modal-body {
        padding: 15px;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .report-cancel-btn,
    .report-submit-btn {
        width: 100%;
    }
}
