/* Toast Notification Styles */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 350px;
}

.toast {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  padding: 16px;
  padding-bottom: 18px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid #666;
  color: #333;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  transition: width linear;
  border-radius: 0 0 8px 8px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(100%);
  opacity: 0;
}

.toast.success {
  border-left-color: #4CAF50;
}

.toast.success .toast-progress {
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.toast.error {
  border-left-color: #f44336;
}

.toast.error .toast-progress {
  background: linear-gradient(90deg, #f44336, #ef5350);
}

.toast.warning {
  border-left-color: #ff9800;
}

.toast.warning .toast-progress {
  background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.toast-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}

.toast-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, "Segoe UI Symbol", "Segoe UI Emoji", sans-serif;
  line-height: 1;
}

.toast.success .toast-icon {
  background: #4CAF50;
}

.toast.error .toast-icon {
  background: #f44336;
}

.toast.warning .toast-icon {
  background: #ff9800;
}

.toast-message {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: #666;
}

/* Mobile responsive for toasts */
@media (max-width: 768px) {
  .toast-container {
    left: 10px;
    right: 10px;
    top: 10px;
    max-width: none;
  }

  .toast {
    margin-bottom: 8px;
    padding: 12px;
  }

  .toast-header {
    font-size: 13px;
  }

  .toast-message {
    font-size: 12px;
  }
}

/* Header Styles */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .main-header {
    padding: 16px 24px;
    flex-wrap: nowrap;
    gap: 20px;
  }
}

.logo img {
  height: 32px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 40px;
  }
}

/* Header Now Playing */
.header-now-playing {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 200px;
}

@media (max-width: 767px) {
  .header-now-playing {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }
}

.header-now-playing-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 400px;
  width: 100%;
}

.header-playing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}

@media (min-width: 768px) {
  .header-playing-header {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

.header-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 10px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header-song-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

#header-current-song-image {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  #header-current-song-image {
    width: 40px;
    height: 40px;
  }
}

.header-song-details {
  flex: 1;
  min-width: 0;
}

#header-current-song-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  #header-current-song-title {
    font-size: 14px;
  }
}

#header-current-song-artist {
  font-size: 11px;
  color: #a0a0a0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  #header-current-song-artist {
    font-size: 12px;
  }
}

/* Band Info */
.band-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.band-details {
  text-align: right;
}

#band-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  #band-name {
    font-size: 16px;
  }
}

#gig-location {
  font-size: 11px;
  color: #00ff88;
  font-weight: 500;
}

@media (min-width: 768px) {
  #gig-location {
    font-size: 12px;
  }
}

#band-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  #band-logo {
    width: 50px;
    height: 50px;
  }
}

/* Queue Status Styles */
.queue-status-container {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.queue-status-container.collapsed {
  display: none;
}

.queue-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.toggle-queue-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-queue-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.toggle-queue-btn:active {
  transform: translateY(0);
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
  line-height: 1;
}

.queue-status-container.collapsed .toggle-icon {
  transform: rotate(-90deg);
}

@media (min-width: 768px) {
  .queue-status-container {
    padding: 20px;
    margin-bottom: 30px;
  }
}

.now-playing {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.queue-info {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  max-height: 500px;
  opacity: 1;
  margin-top: 0;
}

.queue-info.collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: -20px;
}

@media (min-width: 768px) {
  .now-playing {
    margin-bottom: 24px;
  }
}

.now-playing-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

@media (min-width: 768px) {
  .now-playing-header {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.now-playing-content {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

@media (min-width: 768px) {
  .now-playing-content {
    padding: 16px;
  }
}

.now-playing-content img {
  border-radius: 8px;
  margin-right: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .now-playing-content img {
    margin-right: 16px;
    width: 60px;
    height: 60px;
  }
}

.song-info {
  flex: 1;
}

#current-song-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  #current-song-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}

#current-song-artist {
  font-size: 13px;
  color: #a0a0a0;
  margin-bottom: 6px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  #current-song-artist {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

#current-song-requester {
  font-size: 11px;
  color: #00ff88;
  font-style: italic;
  line-height: 1.3;
}

@media (min-width: 768px) {
  #current-song-requester {
    font-size: 12px;
  }
}

.queue-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .queue-info {
    grid-template-columns: 1fr 2fr;
    gap: 24px;
  }
}

.queue-stats {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

@media (min-width: 768px) {
  .queue-stats {
    flex-direction: column;
    gap: 16px;
  }
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .stat-item {
    border-radius: 12px;
    padding: 16px;
    flex: none;
  }
}

.stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 2px;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 28px;
    margin-bottom: 4px;
  }
}

.stat-label {
  font-size: 10px;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

.upcoming-songs {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .upcoming-songs {
    padding: 20px;
  }
}

.upcoming-header {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .upcoming-header {
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
}

.upcoming-list {
  max-height: 150px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .upcoming-list {
    max-height: 200px;
  }
}

.upcoming-item {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #e0e0e0;
  line-height: 1.4;
  word-break: break-word;
}

@media (min-width: 768px) {
  .upcoming-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
  }
}

.upcoming-item:last-child {
  border-bottom: none;
}

.upcoming-item.my-song {
  background: rgba(0, 255, 136, 0.1);
  border-radius: 6px;
  padding: 8px;
  margin: 4px 0;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

@media (min-width: 768px) {
  .upcoming-item.my-song {
    border-radius: 8px;
    padding: 12px;
  }
}

/* Touch optimizations for mobile */
@media (hover: none) and (pointer: coarse) {
  .stat-item {
    min-height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .upcoming-list {
    padding-right: 8px;
  }

  .upcoming-item.my-song {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .toggle-queue-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px;
  }

  .toggle-queue-btn:hover {
    transform: none;
  }

  .toggle-queue-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
  }
}

/* Ensure proper text scaling on small screens */
@media (max-width: 480px) {
  .queue-status-container {
    padding: 12px;
    border-radius: 12px;
  }

  #current-song-title {
    font-size: 15px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 9px;
  }

  .upcoming-item {
    font-size: 12px;
    padding: 6px 0;
  }
}

.porucipesmutaster {
  background-color: #20b901;
  border:0px;
  border-radius: 14px;
  padding:10px;
  color:white;
  cursor:pointer;
  position:absolute;
  bottom:10px;
  right:10px;
}

.pesmanaziv {  
  top:5px; 
  margin:0px;  
  margin-right:10px;
  text-align: right;
  line-height: 20px; 
  position: relative;  
  font-size: 1.1em;
  color: #f0f0f0;
}

.izvodjacnaziv { 
  color: darkgrey;
  font-weight: normal; 
  margin:0px;  
  font-size: .8em; 
  margin-right:10px;
  text-align: right;
  margin-top:10px;
}

.close {
  color: #aaa; 
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url('images/icons/close_icon.svg');
  background-repeat: no-repeat;
  width:20px;
  height:20px;
}

.inputkontrola {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.inputsearch { 
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;  
    background-image:url('/images/icons/searchIcon.svg');
    background-repeat:no-repeat;
    background-position: 10px center;
    padding-left:15px;
    background-color: #292A2A;
    padding: 14px;
    padding-left:34px;
    margin:4px;
    font-size:15px;
    color:grey;
    border-radius: 25px; 
    border:0px;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #121212;
}

.logo {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
}

.main-content {
  text-align: center;
  padding: 20px;
}

.main-content h2 {
  margin:0px;
}

.main-content p {
  color: #d3d3d3;
  font-weight: 700;
  margin:0px;
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .song-list {
    gap: 20px;
  }
}

.song-item {
  display: flex;
  align-items: center;
  padding: 8px;
  background-color: #333;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .song-item {
    padding: 12px;
  }
}

.song-item:hover {
  background-color: #404040;
}

.song-item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .song-item img {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 1024px) {
  .song-item img {
    width: 160px;
    height: 160px;
  }
}

.song-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 12px;
  text-align: right;
  flex-grow: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .song-details {
    margin-right: 18px;
  }
}

.song-details h3 {
  font-size: 16px;
  text-align: right;
  max-width: 200px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .song-details h3 {
    font-size: 20px;
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .song-details h3 {
    font-size: 24px;
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .song-details h3 {
    max-width: 500px;
  }
}

.song-details p {
  font-size: 12px;
  margin: 5px 0 10px;
  color: #d3d3d3;
  max-width: 200px;
  word-wrap: break-word;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .song-details p {
    font-size: 14px;
    margin: 5px 0 15px;
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .song-details p {
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .song-details p {
    max-width: 500px;
  }
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .actions {
    gap: 10px;
  }
}

.order {
  background-color: #fff;
  color: #121212;
  border: none;
  border-radius: 15px;
  padding: 8px 16px;
  margin-right: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .order {
    border-radius: 20px;
    padding: 10px 20px;
    margin-right: 18px;
    font-size: 16px;
    min-height: auto;
  }
}

.order:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.order:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.modalwrapper {
  display:none; 
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100%; 
}

.paus {
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 1;
}

/* Modern Modal Styles */
.modern-modal {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 480px;
  width: 90%;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  background: linear-gradient(90deg, #ff9800, #ff6f00);
  padding: 20px 24px;
  color: white;
  position: relative;
}

.modal-song-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-song-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-song-details h3 {
  margin: 0 0 8px 0;
  font-size: 1.3em;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.modal-song-details p {
  margin: 0;
  opacity: 0.9;
  font-size: 1em;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-body {
  padding: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #ecf0f1;
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #ecf0f1;
  font-size: 1em;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ff9800;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9800, #ff6f00);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

/* Custom modal header for requests without image */
.modal-header-custom {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  padding: 24px;
  text-align: center;
}

.modal-header-custom h3 {
  margin: 0;
  font-size: 1.4em;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  .modern-modal {
    margin: 20px auto;
    width: 95%;
  }

  .modal-song-info {
    flex-direction: column;
    text-align: center;
  }

  .modal-song-image {
    width: 60px;
    height: 60px;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 16px;
  }
}

