.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  background-color: #f0f0f0; /* Light background color */
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ffffff; /* White background for the loader */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} ._loaderContainer_13kf5_1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out 0.5s, visibility 1.5s ease-in-out 0.5s;
}

._loaderContainer_13kf5_1._visible_13kf5_17 {
  opacity: 1;
  visibility: visible;
}

._loaderContainer_13kf5_1._fadeOut_13kf5_22 {
  opacity: 0;
  visibility: hidden;
}

._loaderContent_13kf5_27 {
  text-align: center;
}

._loaderAnimation_13kf5_31 {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
}

._aiCircles_13kf5_38 {
  position: absolute;
  width: 100%;
  height: 100%;
}

._circle_13kf5_44 {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: _pulse_13kf5_1 2s infinite;
}

._circle_13kf5_44:nth-child(1) {
  width: 140px;
  height: 140px;
  border-color: #4a90e2;
  left: 30px;
  top: 30px;
  animation-delay: 0s;
}

._circle_13kf5_44:nth-child(2) {
  width: 108px;
  height: 108px;
  border-color: #9b59b6;
  left: 46px;
  top: 46px;
  animation-delay: 0.2s;
}

._circle_13kf5_44:nth-child(3) {
  width: 76px;
  height: 76px;
  border-color: #e74c3c;
  left: 62px;
  top: 62px;
  animation-delay: 0.4s;
}

._musicNotes_13kf5_78 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: _rotate_13kf5_1 8s linear infinite;
}

._note_13kf5_85 {
  position: absolute;
  font-size: 24px;
  color: #333;
  opacity: 0.8;
}

._note_13kf5_85:nth-child(1) { transform: rotate(0deg) translateY(-65px); }
._note_13kf5_85:nth-child(2) { transform: rotate(60deg) translateY(-65px); }
._note_13kf5_85:nth-child(3) { transform: rotate(120deg) translateY(-65px); }
._note_13kf5_85:nth-child(4) { transform: rotate(180deg) translateY(-65px); }
._note_13kf5_85:nth-child(5) { transform: rotate(240deg) translateY(-65px); }
._note_13kf5_85:nth-child(6) { transform: rotate(300deg) translateY(-65px); }

._loaderText_13kf5_99 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
}

@keyframes _pulse_13kf5_1 {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

@keyframes _rotate_13kf5_1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}.genre-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  padding: 20px;
  text-align: left;
}

.genre-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 200px;
  text-align: center;
  transition: transform 0.2s;  
}

.genre-card:hover {
  transform: scale(1.05);
}

.genre-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}

.genre-card h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
}

.genre-card p {
  font-size: 0.9em;
  color: #555;
} :root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: #DF5E3E;
  background-color: #FFFCF2;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, a:visited {
  font-weight: 500;
  color: #F28C70;
  text-decoration: inherit;
}
a:hover {
  color: #DF5E3E;
}

body {
  margin: 0;  
  min-width: 320px;
  min-height: 100vh;
  background-color: #FFFCF2;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

h2 {
  font-size: 1.8em !important;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.admin-fields-table tr {
  vertical-align: top;
}

.admin-fields-table tr td.admin-field-content {
  font-size: 1rem;
  line-height: 1.5;
}

.admin-fields-table tr td.admin-field-label {
  color: black;
}

.multi-line-truncate {
  display: -webkit-box;        /* Use a flexbox-like layout */
  -webkit-line-clamp: 4;       /* Number of lines to show */
  -webkit-box-orient: vertical; /* Vertical orientation */
  overflow: hidden;            /* Hide overflowing content */
  text-overflow: ellipsis;     /* Add ellipsis at the end */
  max-height: 8em;           /* Adjust based on line height */
  line-height: 1.5em;          /* Set line height */
}

.form-error {
  font-size: small;
  color: #DF5E3E;
  margin-left: 10px;
  margin-bottom: 10px;
  padding: 5px;
}

.admin-ui-action-bar {
  margin-top: 40px;
}

.admin-ui-action-bar button {
  margin-left: 10px;
}

