body {
    font-family: Arial, sans-serif;
  }
  
  #app {
    margin: 20px;
  }
  
  #actionPanel {
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
  }

  body, h1, h2, h3, p, a, button, input {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.header {
    background-color: #2C3E50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

button {
    background-color: #18BC9C;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
select {
    /* padding: 10px 20px; */
    margin: 10px;
    cursor: pointer;
}
button:hover {
    background-color: #16A085;
}

.card {
    background-color: #ECF0F1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
}

.card h2 {
    color: #2C3E50;
}

.card.highlight {
    border-left: 5px solid #F39C12;
}

.interactive {
    cursor: pointer;
    align-items: center;
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.stack-item, .history-item {
    padding: 10px;
    border-bottom: 1px solid #BDC3C7;
}

.stack-item:last-child, .history-item:last-child {
    border-bottom: none;
}

.accent {
    color: #074057;
}

.text-primary {
    color: #333333;
}

.djPlayer {
    margin: auto;
}

.slider-container {
    position: relative;
    /* width: 250px; */
    margin: 30px auto;
}

.slider {
    /* -webkit-appearance: none; */
    width: 40%;
    height: 10px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider-label {
    position: absolute;
    top: -30px;
    left: 30%;
    transform: translateX(-50%);
    color: green;
    font-family: Arial, sans-serif;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid green;
    transition: background 0.3s ease; /* Smooth transition for background */
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 2px solid green;
    transition: background 0.3s ease; /* Smooth transition for background */
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

/* #requests {
    display: flex;
    flex-direction: column;
    background-color: #ECF0F1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
  } */


#requests h2 {
    color: #2C3E50;
}
  
/* .request {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 75%;
    margin: 5px 0;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    user-select: none; /* prevent text selection */
    /* touch-action: pan-x; optimize for touch panning
    overflow: hidden;
  } */

  #requests {
    overflow-x: hidden; /* Hide the side backgrounds initially */
    display: flex;

    align-items: center;
    justify-content: center;
      flex-direction: column;
      /* width: 100%;
      max-width: 300px;
      margin: 20px auto; */
      background-color: #ECF0F1;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin: 20px 0;
      padding: 20px;
      border-radius: 10px;
  }
  
  .request {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000000; /* The color of the swipable item */
  
  /*     padding: 10px; */
      width: 95%;
      margin: 5px 0;
      background-color: #f0f0f0;
      border: 1px solid #ccc;
      border-radius: 5px;
      user-select: none; /* prevent text selection */
      touch-action: pan-x; /* optimize for touch panning */
      overflow: hidden;
    
  }
  
  .swipe-background {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    z-index: 0;
    
  }
  
  .left-action {
    right: 0;
    background-color: #ff3b30; /* Red for delete */
  }
  
  .right-action {
    left: 0;
    background-color: #4CD964; /* Green for play */
  }
  
  .request-content {
    padding: 20px;
    z-index: 1;
    background-color: #fff; /* Must match swipe-item's background */
    width: 100%; /* Ensure it covers the swipe background */
    position: relative; /* Bring the content above the backgrounds */
  }
  
  