html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }
  
  body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    touch-action: none;
    overflow: hidden;
    justify-content: flex-end; /* aligns the content to the bottom */
  }

  .call-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin-top: auto;
    margin-bottom: 50px;
  }

  .call-info {
    text-align: center;
    margin-bottom: 40px;
  }

  .call-info h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .call-info p {
    font-size: 16px;
    color: #999;
  }

  .buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: visible;
  }

  .button-wrapper {
    position: relative;
    width: 160px;
    height: 60px;
    overflow: visible;
  }

  .slider-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
  }

  .button {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease-out;
  }

  .decline-btn {
    background-color: #d9262e;
    left: 0;
  }

  .accept-btn {
    background-color: #1a8c1a;
    right: 0;
  }

  .button-wrapper.left .slider-track {
    background: linear-gradient(to right, rgba(217, 38, 46, 0.3), rgba(217, 38, 46, 0.1));
  }

  .button-wrapper.right .slider-track {
    background: linear-gradient(to left, rgba(26, 140, 26, 0.3), rgba(26, 140, 26, 0.1));
  }

  .button-label {
    position: absolute;
    bottom: -30px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
  }

  .slide-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    opacity: 0;
  }

  .left-arrows {
    right: 10px;
  }

  .right-arrows {
    left: 10px;
  }

  .arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
  }

  .arrow-left {
    transform: rotate(-135deg);
  }

  .arrow-right {
    transform: rotate(45deg);
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }

  @keyframes arrowAnimate {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(15px);
    }
  }

  @keyframes arrowAnimateLeft {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(-15px);
    }
  }

  @keyframes arrowAnimateRightToLeft {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(-15px);
    }
  }

  @keyframes arrowAnimateLeftToRight {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(15px);
    }
  }

  .icon-chevron-right1 {
    animation: arrowAnimate 1.5s infinite;
    animation-delay: 0s;
  }

  .arrow-2 {
    animation: arrowAnimate 1.5s infinite;
    animation-delay: 0.2s;
    margin-right: 15px;
  }

  .arrow-3 {
    animation: arrowAnimate 1.5s infinite;
    animation-delay: 0.4s;
    margin-right: 30px;
  }

  .arrow-4 {
    animation: arrowAnimateLeft 1.5s infinite;
    animation-delay: 0s;
  }

  .arrow-5 {
    animation: arrowAnimateLeft 1.5s infinite;
    animation-delay: 0.2s;
    margin-left: 15px;
  }

  .arrow-6 {
    animation: arrowAnimateLeft 1.5s infinite;
    animation-delay: 0.4s;
    margin-left: 30px;
  }

  .arrow-1, .arrow-2, .arrow-3 {
    animation: arrowAnimateLeftToRight 1.5s infinite;
  }

  .arrow-4, .arrow-5, .arrow-6 {
    animation: arrowAnimateRightToLeft 1.5s infinite;
  }

  .pulsating {
    animation: pulse 1.5s infinite;
  }
  
  .button.disabled {
    opacity: 0.6;
    pointer-events: none;
  }

  .icon-chevron-left, .icon-chevron-right {
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
  }

  .icon-chevron-left {
    transform: rotate(45deg); /* Adjusted rotation */
  }

  .icon-chevron-right {
    transform: rotate(-135deg); /* Adjusted rotation */
  }