.report-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #e74c3c !important;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;
  
}
.report-btn:active { color: #ff6b6b; }

/* === Modal Background === */
.report-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* === Modal Box === */
.report-box {
  background: #fff;
  border-radius: 5px 5px 0 0;
  padding: 20px;
  width: 100%;
  position: fixed;
  bottom: 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.report-box h2 {
  margin: 0;
  font-size: 20px;
  color: #222;
  border-bottom: 1px solid #222;
}
.report-box .modal-desc {
  color: #555;
  font-size: 14px;
  margin: 15px 0 15px;
}

/* === Options === */
.report-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: start;
  align-items: start;
  margin-top: 15px;
  margin-bottom: 10px;
}
.report-options label {
  font-size: 15px;
  color: #333;
  gap: 6px;
  width: 100%;
  display: flex;
  padding: 10px;
  flex-direction: row;
  cursor: pointer;
}

/* === Textarea === */
.report-box textarea {
  width: 100%;
  min-height: 80px;
  resize: none;
  border: 2px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  font-size: 14px;
  outline: none;
  display: none;
  transition: 0.3s;
}
.report-box textarea:focus {
  --accent-color: #4db8ff;
  border-color: var(--accent-color);
}

/* === Actions === */
.report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}

.report-actions button {
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}
.cancel-btn {
  background: #ccc; color: #000;
}
.cancel-btn:hover { background: #b1b1b1; }

.submit-btn {
  background: #e74c3c; color: #fff;
}
.submit-btn:hover { background: #ff6b6b; }

@media (max-width: 500px) {
  .report-box{
    padding: 3px;
  }
  .report-box .desc{
    font-size: 12px;
  }
  .report-actions button{
    padding: 5px 8px;
  }
  .report-options label, .report-options textarea {
    font-size: 10px;
  }
}