/* Yorum Bildirme (Report) Sistemi */
.comment-report-btn {
    background: transparent;
    border: none;
    color: #7e8299;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.875rem;
    margin-left: auto;
}

.comment-report-btn:hover {
    color: #f1416c;
    background: #fff5f8;
}

.comment-report-btn i {
    font-size: 0.875rem;
}

/* Report Modal */
.report-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: fadeIn 0.2s ease;
}

.report-modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.report-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    z-index: 9999;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.report-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #181c32;
}

.report-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #7e8299;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.report-modal-close:hover {
    color: #181c32;
}

.report-modal-body {
    padding: 1.5rem;
}

.report-form-group {
    margin-bottom: 1.25rem;
}

.report-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #181c32;
    font-size: 0.95rem;
}

.report-reason-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #e4e6ef;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.report-reason-option:hover {
    border-color: #3699ff;
    background: #f3f6f9;
}

.report-reason-option input[type="radio"] {
    margin-right: 0.75rem;
    cursor: pointer;
}

.report-reason-option:has(input:checked) {
    border-color: #3699ff;
    background: #e8f4ff;
}

.report-form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid #e4e6ef;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}

.report-form-group textarea:focus {
    outline: none;
    border-color: #3699ff;
    box-shadow: 0 0 0 3px rgba(54, 153, 255, 0.1);
}

.report-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e4e6ef;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.report-cancel-btn,
.report-submit-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.report-cancel-btn {
    background: #f3f6f9;
    color: #7e8299;
}

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

.report-submit-btn {
    background: #f1416c;
    color: white;
}

.report-submit-btn:hover {
    background: #d11a4e;
}

.report-submit-btn:disabled {
    background: #b5b5c3;
    cursor: not-allowed;
}

/* Report Success Notification */
.report-success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #50cd89;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(80, 205, 137, 0.3);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    display: none;
}

.report-success-notification.show {
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.report-success-notification i {
    margin-right: 0.5rem;
}