/* Adjust line height for Summernote editor */
.note-editor .note-editable {
    line-height: 1.5; /* Adjust to your desired value */
}

.text-purple{
    color:#492e83;
}

.bg-purple{
    background-color:#492e83;
    
}

.bg-darkpurple{
    background-color:#4f1a70;
    /* 4f1a70 */
    /* background: linear-gradient(to bottom, #6a11cb, #271c41); */
}

.bg-lightpurple{
    background-color:#eed2ff;
    /* 4f1a70 */
    /* background: linear-gradient(to bottom, #6a11cb, #271c41); */
}

.bg-darkblue{
    background-color:#2a346a;
    /* background: linear-gradient(to bottom, #6a11cb, #271c41); */
}

.border-purple{
    border: 3px solid #8b388f;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgb(80, 70, 156); */
  background-color: #8b388f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.card:hover .card-overlay {
  transform: translateY(0);
}

.glow-card {
    transition: box-shadow 0.3s ease;
}
  
.glow-card:hover {
    box-shadow: 0 0 10px rgba(84, 134, 204, 0.9); 
}

.square {
  aspect-ratio: 1 / 1;
}
