.report-modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.report-modal-overlay.show {
opacity: 1;
pointer-events: all;
}
.report-modal-content {
background: #1a1f2e;
border: 1px solid rgba(74, 158, 255, 0.3);
border-radius: 16px;
width: 90%;
max-width: 500px;
transform: scale(0.9);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.report-modal-overlay.show .report-modal-content {
transform: scale(1);
}
.report-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.report-modal-header h3 {
font-size: 18px;
font-weight: 600;
color: white;
margin: 0;
}
.report-modal-close {
background: none;
border: none;
color: rgba(255, 255, 255, 0.6);
font-size: 24px;
cursor: pointer;
padding: 0;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
transition: all 0.2s;
}
.report-modal-close:hover {
background: rgba(255, 255, 255, 0.1);
color: white;
}
.report-modal-body {
padding: 20px;
}
.report-reasons {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 16px;
}
.report-reason-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
cursor: pointer;
transition: all 0.2s;
}
.report-reason-item:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(74, 158, 255, 0.3);
}
.report-reason-item input[type="radio"] {
width: 18px;
height: 18px;
cursor: pointer;
}
.report-reason-item span {
color: white;
font-size: 14px;
}
.report-details {
width: 100%;
min-height: 80px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 12px;
color: white;
font-size: 14px;
resize: vertical;
}
.report-details:focus {
outline: none;
border-color: #4a9eff;
}
.report-modal-footer {
display: flex;
gap: 12px;
padding: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.report-btn {
flex: 1;
padding: 12px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: none;
transition: all 0.2s;
}
.report-btn.cancel {
background: rgba(255, 255, 255, 0.1);
color: white;
}
.report-btn.cancel:hover {
background: rgba(255, 255, 255, 0.15);
}
.report-btn.submit {
background: #ef4444;
color: white;
}
.report-btn.submit:hover {
background: #dc2626;
}
