#dropzone {
  border: 2px dashed #007bff;
  padding: 20px;
  margin-bottom: 20px;
}

.modal-left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  margin: 0;
}

.modal-left .modal-dialog {
  margin: 0;
  height: 100%;
  transform: none;
  max-width: 50%;
  width: 50%;
}

.modal-left .modal-content {
  height: 100vh;
  border-radius: 0;
}

.add-border {
  background-color: #fff;
  border: 0.1rem solid #ebebeb;
  overflow: hidden;
  border-radius: 5px;
}

input[readonly] {
  background-color: #e9ecef !important;
  opacity: 0.6;
  cursor: not-allowed;
  color: #6c757d;
  border: 1px solid #ccc;
}
/* ONLY scope to your grid */
.action-grid > div {
  display: flex;
}

/* Card */
.action-grid .action-card {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 25px 15px;
  border-radius: 12px;

  background: #fff;
  border: 1px solid #e9ecef;

  text-decoration: none;
  color: #2c3e50;

  transition: all 0.2s ease;
}

/* Icon */
.action-grid .icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #0d6efd;
  transition: 0.2s;
}

/* Title */
.action-grid .title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hover */
.action-grid .action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  background: #0d6efd;
  color: #fff;
}

.action-grid .action-card:hover .icon {
  color: #fff;
}

/* Layout polish */
.card {
  border-radius: 12px;
}

/* Blog content */
.blog-content {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* Comment list */
.comment-list {
  overflow-y: auto;
  max-height: 500px;
  padding-right: 5px;
}

/* Each comment */
.comment-item {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

/* Avatar */
.avatar {
  width: 34px;
  height: 34px;
  min-width: 34px; /* 🔥 prevents shrinking */
  flex-shrink: 0; /* 🔥 key fix */

  background: #0d6efd;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.comment-text {
  font-size: 13px;
  line-height: 1.4;
}

/* Scrollbar (optional but clean) */
.comment-list::-webkit-scrollbar {
  width: 5px;
}

.comment-list::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
