﻿/* Report Modal Styles */
.report-option-container {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    position: relative;
}

.report-option-container:hover {
    border-color: #495057;
    background-color: #e9ecef;
}

.report-option-container.selected {
    border-color: #000000;
    background-color: #f8f9fa;
    color: #212529;
}

.report-option-container.selected .report-option-text {
    color: #212529 !important;
}

.report-option-container.selected .report-option-indicator {
    background-color: #000000;
    border-color: #000000;
}

.report-option-container.selected .report-option-indicator::after {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
}

.report-option-text {
    color: #212529;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

.report-option-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Hide default radio buttons */
.report-option-container input[type="radio"] {
    display: none;
}

/* Textarea styling */
.report-details-textarea {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    resize: none;
    width: 100%;
    min-height: 120px;
    transition: border-color 0.2s ease;
}

.report-details-textarea:focus {
    outline: none;
    border-color: #495057;
    box-shadow: 0 0 0 2px rgba(73, 80, 87, 0.1);
}

/* Character counter */
.character-counter {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    color: #6c757d;
}

/* Submit button */
.report-submit-btn {
    background-color: #495057;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    color: white;
    width: 100%;
    transition: background-color 0.2s ease;
}

.report-submit-btn:hover {
    background-color: #343a40;
}

.report-submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Modal header */
.report-modal-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.report-modal-title {
    color: #212529;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.report-modal-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin: 8px 0 0 0;
}

/* Close button */
.report-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.report-modal-close:hover {
    background-color: #f8f9fa;
    color: #495057;
}
