.mn-comments-wrapper {
  max-width: 600px;
  margin: 20px auto;
  padding: 16px;
  border-radius: 10px;
  background: #f7f7f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.mn-comments-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
}

.mn-comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.mn-input,
.mn-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.mn-input:focus,
.mn-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb33;
}

.mn-button {
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: #fff;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
}

.mn-button:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.mn-comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mn-comment-item {
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.mn-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 12px;
  color: #555;
}

.mn-comment-name {
  font-weight: 600;
}

.mn-comment-date {
  font-size: 11px;
  color: #888;
}

.mn-comment-text {
  font-size: 14px;
  color: #333;
  white-space: pre-wrap;
}

.mn-no-comments {
  font-size: 13px;
  color: #777;
}

.mnsc-feedback {
  font-size: 13px;
}
.mnsc-feedback.mnsc-error {
  color: #dc2626;
}
.mnsc-feedback.mnsc-success {
  color: #16a34a;
}
