/* Report Dialog Styles - Based on PatientImages */
.report-dialog {
    max-width: 1200px;
    background: #2d2d2d;
}

.report-images-preview {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow-x: auto;
}

.report-image-item {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: transform 0.2s;
}

.report-image-item:hover {
    transform: scale(1.05);
}

.report-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-comments {
    margin-bottom: 30px;
}

.report-comments label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.report-comments textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 200px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.report-comments textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.report-comments textarea::placeholder {
    color: #888;
}

.report-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.report-action-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.report-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.save-btn {
    background: #007bff;
    color: white;
}

.save-btn:hover:not(:disabled) {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.cancel-btn {
    background: #6c757d;
    color: white;
}

.cancel-btn:hover:not(:disabled) {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.report-action-btn i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .report-dialog {
        max-width: 900px;
    }

    .report-image-item {
        width: 150px;
        height: 150px;
    }

    .report-images-preview {
        gap: 20px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .report-dialog {
        max-width: none;
    }

    .report-image-item {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }

    .report-images-preview {
        gap: 15px;
        padding: 20px;
    }

    .report-comments textarea {
        font-size: 13px;
        padding: 12px;
    }

    .report-actions {
        flex-direction: column;
    }

    .report-action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .report-image-item {
        width: 100px;
        height: 100px;
    }

    .report-images-preview {
        padding: 15px;
        gap: 10px;
    }
}
