.card-modern {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.floating-label {
  position: relative;
  margin-bottom: 25px;
}

.floating-label input,
.floating-label textarea {
  border-radius: 30px;
  padding: 14px 20px;
  padding-right: 35px;
}

.floating-label input::placeholder,
.floating-label textarea::placeholder {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.floating-label input:focus::placeholder,
.floating-label input:not(:placeholder-shown)::placeholder,
.floating-label textarea:focus::placeholder,
.floating-label textarea:not(:placeholder-shown)::placeholder {
  opacity: 0;
}

.floating-label label {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 14px;
  color: #999;
  transition: 0.2s ease;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
  color: #28a745;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 14px;
  border-radius: 20px;
  background: #e9ecef;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.chip:hover {
  background: #d4edda;
}

.selected-tags {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: #28a745;
  color: white;
  margin: 3px;
  font-size: 13px;
}

.tag i {
  margin-left: 6px;
  cursor: pointer;
}

.search-dropdown {
  display: none;
  max-height: 150px;
  overflow-y: auto;
  border-radius: 12px;
}

.chip.active {
  border: 2px solid #28a745;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  color: #28a745;
}

.dark-mode .chip {
  background: #0f5132 !important;
}

.icon-right {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.position-relative select {
  padding-right: 35px;
}

.position-relative {
  position: relative;
}

.ql-container {
  height: auto !important;
}

.ql-editor {
  min-height: 150px;
}