@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


body {
    font-family: 'Assistant', sans-serif !important;
    background: linear-gradient(to right, green, white, gold);
    /* background: linear-gradient(to right, rgba(0, 128, 0, 1), white, rgba(255, 204, 0, 1)); */
    margin: 0;
    padding: 0;
}

.logo-font{
    font-family: 'Pacifico', cursive !important;
}

.headline-font {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    user-select: none;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, green, white, gold);
    /* background: linear-gradient(to right, rgba(0, 128, 0, 0.7), white, rgba(255, 204, 0, 0.7)); */
    background-color: rgba(0, 128, 0, 0.1);
    /* background: red !important; */

}

.navbar a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}

.navbar input {
    padding: 5px;
    font-size: 16px;
}

.container {
    /* display: flex; */
    justify-content: space-around;
    padding: 20px;
}

.input-section, .ann-graphic, .result-section {
    flex: 1;
    margin: 0 20px;
}

.input-section form {
    display: flex;
    flex-direction: column;
}

.input-section form label, .input-section form input {
    margin-bottom: 10px;
}



/* .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
} */

.ann-graphic video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 2px solid #008000;
    border-radius: 8px;
}

/* Custom CSS to decrease size of form inputs */
.form-control.form-control-sm.small-input {
    height: calc(0.7em + 0.5rem + 2px);
    font-size: 0.75rem;
}


.technical-label {
    font-family: 'IBM Plex Mono', monospace;
}

.small-text {
    font-size: smaller;
}


.smaller-text {
    font-size: x-small;
}

.fixed-button {
    position: sticky;
    /* top: 85px; */
    bottom: 47px;
    left: 10px;
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    border-color: rgba(1,1,1, 0.0);
    font-size: 9px;
    font-weight: bold;
}



.fixed-button2 {
    position: sticky;
    /* top: 85px; */
    bottom: 47px;
    left: 49px;
    background-color: rgba(0,123,255, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    border-color: rgba(1,1,1, 0.0);
    font-size: 9px;
    font-weight: bold;
}

.fixed-button3 {
    position: sticky;
    /* top: 85px; */
    bottom: 47px;
    left: 870px;
    background-color: rgba(0,123,255, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    border-color: rgba(1,1,1, 0.0);
    font-size: 9px;
    font-weight: bold;
}



@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
  }

  .blinking {
    animation: blink 1.9s infinite;
  }


  @keyframes blink2 {
    0% { border-color: white }
    50% { border-color: rgba(0,123,255, 0.7); } /* Change to the desired color */
    100% { border-color: white }
}


.shadow-xs {
    box-shadow: 0 .0625rem .125rem rgba(0, 0, 0, .05);
}




.container {
    /* text-align: center; */
}
.plans {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.plan {
    border: 1.5px solid rgba(0, 128, 0, 0.27);
    border-radius: 8px;
    padding: 20px;
    margin: 0 10px;
    width: 200px;
    background-color: #ffffff;
}
.plan.plus {
    border: 2px solid rgba(255, 215, 0, 0.54);
    background-color: #ffffe0;
}
.price {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #008000;
}
.features {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #008000;
}
.features li {
    margin: 10px 0;
}
.button-plus {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    color: #ffffff;
    background-color: #008000;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, text-decoration 0.3s, box-shadow 0.3s;
}

.button-plus:hover {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }



.chatbox-button {
    position: fixed;
    bottom: 43px;
    right: 18px;
    width: 70px;
    height: 70px;
    /*background: linear-gradient(145deg, #007bff, #0056b3); !* Gradient for the button *!*/
    border-radius: 50%; /* Perfect circle */
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.3));
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: blink-btn 1s infinite alternate; /* Blinking animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

/* Animation to make the button itself blink */
@keyframes blink-btn {
    0% {
        opacity: 1;
        transform: scale(1); /* Normal size */
    }
    100% {
        opacity: 0.94; /* Faded look */
        transform: scale(0.95); /* Slight shrink */
    }
}

/* Optional hover effects */
.chatbox-button:hover {
    transform: scale(1.1); /* Slight zoom for interactivity */
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 -4px 6px rgba(255, 255, 255, 0.2); !* Enhanced shadow *!*/
}




  .chatbox-button img {
    width: 80%;
    height: auto;
    /* filter: brightness(0) invert(1); */
  }


  @keyframes blink-cht {
    from {
      background-color: #007bff;
    }
    to {
      background-color: transparent;
    }
  }


  .blinking-dot {
    display: inline-block;
  }

  .dot {
    height: 10px;
    width: 10px;
    background-color: #ff6347; /* Reddish color */
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px; /* Adjust margin as needed */
    animation: blink-inf 1s infinite alternate;
  }

  @keyframes blink-inf {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }



  .ibm-text {
    font-family: "IBM Plex Sans", sans-serif;
    /* color: #007acc; */
  }



  .image-preview-item {
    width: 150px;  /* Adjust the size as needed */
    height: 150px; /* Keep the aspect ratio or adjust as needed */
}



@keyframes blink-yazi {
    0% { color: transparent; }
    50% { color: #fff; } /* Assuming you want it to blink white */
    100% { color: transparent; }
}

.blinking-text {
    animation: blink-yazi 1s infinite;
}


.blue-chevron {
    color: rgba(3, 50, 214, 0.7); /* Change to your desired blue color */
}


        /* Animation for button tilt and vibration */
        @keyframes tilt-vibration {
            0% { transform: rotate(-1deg); }
            50% { transform: rotate(1deg); }
            100% { transform: rotate(-1deg); }
        }

        .vibrating-button {
            animation: tilt-vibration 1s infinite;
        }





        .btn-custom {
            opacity: 0.85;
            text-align: left !important;
            font-weight: bold;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px 20px;
        }
        .btn-custom img {
            height: 21px;
            width: auto;
            margin-right: 5px;
        }
        .dropdown-container {
            display: flex;
        }
        .dropdown-custom {
            margin-left: 5px;
            margin-right: 5px;
        }
        .dropbtn-custom {
            background-color: #fff;
            color: #333;
            padding: 3px 7px;
            font-size: 11px;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 130px;
        }
        .dropbtn-custom i {
            margin-right: 10px;
        }
        .dropdown-content-custom {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 130px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid #ddd;
        }
        .dropdown-content-custom label {
            display: flex;
            align-items: center;
            padding: 3px 15px;
            font-size: 10px;
            cursor: pointer;
            margin: 0;
        }
        .dropdown-content-custom input[type="radio"] {
            margin-right: 10px;
        }
        .dropdown-content-custom label:hover {
            background-color: #f1f1f1;
        }
        .dropdown-custom.show .dropdown-content-custom {
            display: block;
        }




          /* Define the heartbeat animation */
  @keyframes heartbeat {
    0% {
      transform: scale(0.9);
    }
    50% {
      transform: scale(1.0);
    }
    100% {
      transform: scale(0.9);
    }
  }

  /* Apply the heartbeat animation to the button */
  .heartbeat-button {
    animation: heartbeat 7s infinite;
  }


  .canvas-container {
    /* display: flex; */
    /* justify-content: center; */
}


.btn-sm-custom {
    font-size: 0.65rem !important;
    padding: 0.15rem 0.5rem !important;
}


 .blink-1x {
     animation: blink-animation-1x 3s steps(2, start) infinite;
 }

@keyframes blink-animation-1x {
    to {
        visibility: hidden;
    }
}



/* Add this to your stylesheet to show the pointer cursor on hover */
#load-soil-test-btn {
    cursor: pointer;
}

.input-group-text {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.input-group-text:hover {
    background-color: rgba(0, 123, 255, 0.1); /* Light blue background on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}


/*#soil-form { display: flex; flex-direction: column; align-items: center; }*/
