.romantica-track {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.romantica-cover-wrapper {
    flex: 0 0 30%;
    max-width: 30%;
    padding-right: 10px;
}

.romantica-cover {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.romantica-cover:hover {
    transform: scale(1.05);
}

.romantica-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.romantica-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 3px;
}

.romantica-artist {
    font-size: 1em;
    color: #777;
    margin-bottom: 3px;
}

.romantica-time {
    font-size: 0.9em;
    color: #aaa;
}
}
.romantica-lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}
.romantica-lightbox-modal img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
.romantica-lightbox-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
