/* ---------- General Wall Styles ---------- */
.cw-wall {
  max-width: 600px;
  margin: 30px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* ---------- Form Styles ---------- */
.cw-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fefefe;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease;
}

.cw-form input,
.cw-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cw-form input:focus,
.cw-form textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 6px rgba(0, 115, 170, 0.3);
  outline: none;
}

.cw-form textarea {
  resize: vertical;
  min-height: 80px;
}

.cw-form button {
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: #0073aa;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cw-form button:hover {
  background: #005f88;
  transform: scale(1.05);
}

/* ---------- Submission List Styles ---------- */
.cw-list {
  margin-top: 25px;
}

.cw-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 18px;
  animation: fadeInUp 0.5s ease;
  transition: all 0.3s ease;
}

.cw-item p {
  margin: 5px 0;
  font-size: 14px;
}

.cw-like-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #e63946;
  transition: transform 0.2s ease, color 0.2s ease;
}

.cw-like-btn.liked {
  transform: scale(1.2);
  color: #d62828;
}

/* ---------- Load More Button ---------- */
.cw-loadmore {
  display: block;
  margin: 20px auto;
  padding: 10px 25px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cw-loadmore:hover {
  background: #005f88;
  transform: scale(1.05);
}

/* ---------- Toast / Snackbar Styles ---------- */
.cw-toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  opacity: 0;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
