/* General styling for the collapsible cards */
/* .custom-design {
  font-family: 'Arial', sans-serif;
  padding: 20px;
  background-color: #022514ec;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.card-header {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-weight: bold;
}


/* Button styling */
.property-toggle {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 0;
  border: none;
  background: none;
  font-weight: normal;

}

.property-toggle:hover {
  color: #ffd700;
}

/* When the card is collapsed */
.card.collapsed .card-header {
  background-color: #28a745;
}

/* Collapsible content styling */
.card-body {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.fullwdbtn {
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  margin-top: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Specific button styles */


#addText {
  background-color: #007bff;
  color: white;
}

#addImage {
  background-color: #6c757d;
  color: white;
}

/* Hover effects for buttons */
button:hover {
  opacity: 0.9;
}

button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.75);
}

/* Hover effect on card header for better interaction */
.card-header:hover {
  background-color: #0056b3;
  transition: background-color 0.3s ease;
}

/* Style for the collapsed state */
.collapse {
  display: none;
}

.collapse.show {
  display: block;
}
