.report-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 43, 91, 0.4) !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: blur(4px);
}

.report-modal.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

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

.report-modal-content {
    background-color: white;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.report-modal-header {
    background-color: #f9fafb;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #002B5B;
    letter-spacing: -0.025em;
}

.report-form {
    padding: 1.5rem;
}

.report-section {
    margin-bottom: 1.25rem;
}

.report-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #4b5563;
}

.report-preview-box {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
}

.preview-content {
    flex: 1;
}

.preview-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    display: block;
    font-size: 1rem;
}

.preview-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    display: block;
}

.report-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.btn-cancel {
    flex: 1;
    padding: 0.75rem;
    background-color: white;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-cancel:hover {
    background-color: #f9fafb;
    color: #111827;
    border-color: #9ca3af;
}

.btn-confirm {
    flex: 1.5;
    padding: 0.75rem;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-confirm:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.report-form select, 
.report-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
    background-color: white;
}

.report-form select:focus, 
.report-form textarea:focus {
    outline: none;
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.report-form textarea {
    resize: vertical;
    min-height: 80px;
}

.error-text {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.error-text.active {
    display: block;
}

.preview-extra {
    margin-top: 4px;
    font-style: italic;
    font-size: 0.85rem;
    color: #6b7280;
    display: block;
}

.report-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #10b981;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.report-toast.active {
    transform: translateX(0);
}

.report-toast.error {
    background-color: #ef4444;
}

.report-toast svg {
    flex-shrink: 0;
}

.close-modal {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.close-modal:hover {
    background-color: #f3f4f6;
    color: #ef4444;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.report-btn:hover {
    background: #fecaca;
    color: #dc2626;
    border-color: #fca5a5;
    transform: translateY(-1px);
}

.report-btn-small {
    background: none;
    border: none;
    padding: 0;
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.report-btn-small:hover {
    color: #ef4444;
    text-decoration: underline;
}
