/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Jan 10, 2026, 11:17:32 AM
    Author     : lcg98
*/

body {
  background: black;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  padding-top: 80px;
}
#note {
    position: absolute;
    top: 40rem;
    left: 20%;
    color: red;
    font-size: 24px;
    font-weight: 600;
}

.nav-wrapper {
  position: relative;
  width: 600px;
  height: 120px;
  margin-top: 25rem;
 }

/* Track */
.track {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 10px;
  background:blueviolet;
  border-radius: 3px;
}

/* Draggable handle */
.handle {
  will-change: transform;
  touch-action: none;
  position: absolute;
  top: 48px;
  width: 24px;
  height: 24px;
  background:aquamarine;
  border-radius: 50%;
  border: 2px solid #4a4a4a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
}

/* Teardrop pointer */
.pointer {
  position: absolute;
  top: -20px;
  width: 48px;
  height: 64px;
  background: white;
  border-radius: 50% 50% 80% 80%;
  border: 2px solid #4a4a4a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transform-origin: bottom center;
  pointer-events: auto;
  cursor: pointer;
}

/* Number inside pointer */
.pointer-number {
  position: absolute;
  top: 12px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  user-select: none;
  cursor: pointer;
}

#mobile {
  display: none;
}

/***********************************************************************/
/***************************** SMARTPHONE******************************/
/**********************************************************************/
@media only screen and (max-width: 414px) and (min-width: 240px) {
    #note {
        position: absolute;
        top: 25rem;
        left: 5%;
        color: red;
        font-size: 14px;
        font-weight: 600;
    }
    
    .nav-wrapper {
        position: relative;
        width: 600px;
        height: 120px;
        margin-top: 10rem;
        margin-left: 5rem;
    }
    /* Track */
    .track {
        touch-action: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 200px;
        height: 30px;
        background: blueviolet;
        border-radius: 8px;
        padding:       0;
    }
    .handle {
        will-change: transform;
        touch-action: none;
        position: absolute;
        top: 60px;
        width: 24px;
        height: 24px;
        background:aquamarine;
        border-radius: 50%;
        border: 2px solid #4a4a4a;
        box-shadow: 0 2px 6px rgba(0,0,0,0.25);
        cursor: pointer;
    }

    /* Teardrop pointer */
    .pointer {
        position: absolute;
        top: -6px;
        width: 48px;
        height: 64px;
        background: white;
        border-radius: 50% 50% 80% 80%;
        border: 2px solid #4a4a4a;
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        transform-origin: bottom center;
        pointer-events: auto;
        cursor: pointer;
    }

    /* Number inside pointer */
    .pointer-number {
        position: absolute;
        top: 12px;
        width: 100%;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        color: #333;
        user-select: none;
        cursor: pointer;
      }
    
    #mobile {
        display: block;
        font-weight: 600;
        position: relative;
        top:      355px;
        border: 3px;
        border-color: blueviolet;
        border-style:solid;
        border-radius: 5%;
        color:    red;
        background-color:#089494;
        width:    fit-content;
        height:   14vh;
        margin-left: 3rem;
        margin-bottom: 3rem;
        padding: .5rem;
    }
    #myNumber {
        margin-bottom: .5rem;
    }
    button {
        font-weight: 600;
        border: 2px;
        border-radius: 50% 50%;
        padding:     .2rem;
        
    }

}    