 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Heebo", sans-serif;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 2rem;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    max-width: 400px;
    width: 100%;
}

.top-buttons {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

select {
    background-color: #1b1b1b;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.top-buttons button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    background-color: #1b1b1b;
    color: #fff;
    cursor: pointer;
}

.top-buttons button:hover {
    background-color: #219653;
}

.counter {
    font-size: 7rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.main-buttons {
    justify-content: center;
    text-align: -webkit-center;
    gap: 1rem;
}

.main-buttons button {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: #01301C;
    color: #fff;
    font-size: 5rem;
    border: 3px solid green;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -1px 0px 20px 5px #25824c;
    /* transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease; */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.main-buttons button:active {
    /* transform: scale(0.95); Slightly shrink the button */
    box-shadow: 0 0 20px 5px #25824c;
    background-color: #2b8588;
}

.secondary-buttons button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    border: 3px solid green;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    box-shadow: -1px 0px 20px 5px #25824c;
    transition: background-color 0.3s ease;
}
.secondary-buttons button:active {
    /* transform: scale(0.95); Slightly shrink the button */
    box-shadow: 0 0 20px 5px #25824c;
    background-color: #2b8588;
}

#decrement {
    background-color: #01301C;
}

#decrement:hover {
    /* background-color: #2b8588; */
    /* border: 5px solid white; */
}

.footer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #7f8c8d;
}

/* Mobile-specific adjustments */
@media all and (max-width: 480px) {
    .main-buttons button {
        width: 210px;
        height: 210px;
        font-size: 4rem;
         -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    }

    .main-buttons button:active {
        /* transform: scale(0.95); Consistent press effect on mobile */
        box-shadow: 0 0 20px 5px #25824c;
    background-color: #2b8588;
    }

    .secondary-buttons button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-top: -30px;
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
        border-radius: 50%;
        color: #fff;
        border: 3px solid green;
    }
    .secondary-buttons button:active {
        /* transform: scale(0.95); Consistent press effect on mobile */
        box-shadow: 0 0 20px 5px #25824c;
    background-color: #2b8588;
    }


    .counter {
        font-size: 5rem;
    }
}


/* Optional: Styling for Editing Mode */
[contenteditable="true"] {
  border: 2px solid transparent !important;
  text-decoration: none !important;
  padding: 5px !important; */
  border-radius: 5px !important;
  /* background-color: #1b1b1b !important; */
  color: white !important;
  outline: none !important;
  /* position: relative !important; */
}
 .fa-angle-double-left:before, .fa-angles-left:before{
        color: white;
      }

.edit-btn{
    background-color: transparent !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 2rem !important;
    margin-top: 30px !important;
}