button:focus {
    outline: 0;
}


/*get rid of blue outline */

.button-blue,
.button-red,
.button-brown,
.button-tan,
.button-darkgreen,
.button-orangered,
.button-green,
.button-darkgreen,
.button-orange,
.button-indianred,
.button-purple,
.button-indigo,
.button-gray {
    border-radius: 10px;
    font-family: Arial;
    font-size: 16px;
    padding: 6px 10px 6px 10px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    /*height:5vh;*/
}

.button-indigo {
    color: white;
    background-color: indigo;
}

.button-indigo:hover {
    color: white;
    background-color: rgb(23, 1, 39)
}


.button-orangered {
    color: white;
    background-color: orangered;
}

.button-orangered:hover {
    color: white;
    background-color:rgb(150, 41, 2);
}


.button-darkgreen {
    color: white;
    background-color: darkgreen;
}

.button-darkgreen:hover {
    color: white;
    background-color:rgb(0, 51, 0)
}


.button-indianred {
    color: #ffffff;
    background-color: indianred;
}

.button-indianred:hover {
    color: #ffffff;
    background-color: lightcoral;
}

.button-purple {
    color: #ffffff;
    background-color: purple;
}

.button-purple:hover {
    color: #ffffff;
    background-color: rgb(136, 68, 136);
}

.button-green {
    color: #ffffff;
    background-color: #08c803;
}

.button-green:hover {
    color: #ffffff;
    background-color: #3e813d;
}

.button-red {
    color: #ffffff;
    background-color: red;
}

.button-red:hover {
    color: #ffffff;
    background-color: rgb(141, 5, 5);
}

.button-blue {
    color: #ffffff;
    background-color: #019bfd;
}

.button-blue:hover {
    color: #ffffff;
    background-color: #035080;
}

.button-brown {
    color: #ffffff;
    background-color: #b38d66;
}

.button-brown:hover {
    color: #ffffff;
    background-color: #8c6e4f;
}

.button-tan {
    color: black;
    background-color: #f1d6a9;
}

.button-tan:hover {
    color: #ffffff;
    background-color: #c4ac84;
}

/* .button-darkgreen {
    color: #ffffff;
    background-color: #757e3c;
}

.button-darkgreen:hover {
    color: #ffffff;
    background-color: #50562d;
} */

.button-orange {
    color: #ffffff;
    background-color: #f49a0d;
}

.button-orange:hover {
    color: #ffffff;
    background-color: #c17c0e;
}

.button-gray {
    color: #ffffff;
    background-color: #dfdfe4;
}

.button-gray:hover {
    color: #ffffff;
    background-color: #a3a3a6;
}

.increase-size25 {
    transform: scale(1.25);
}

.increase-size50 {
    transform: scale(1.5);
}

.double-size {
    transform: scale(2);
}

.triple-size {
    transform: scale(3);
}

.increase-size {
    transform: scale(1.5);
}

.smaller-size {
    transform: scale(.75);
}

.smaller-size50 {
    transform: scale(.5);
}

.btn-adjust1 {}

.btn-adjust2 {}

.btn-adjust3 {}

.btn-adjust4 {}


/*******************************************************************************************************************
************************************************* SELECTION BOX ****************************************************
********************************************************************************************************************/
 .select-container {
      font-family: Arial, sans-serif;
      max-width: 400px;
      margin: 1rem auto;
      display: flex;
      gap: 25px; 
      /* background-color: pink; */
    }

    .select-wrapper {
      position: relative;
       width: 175px;
    }

    .options {
      appearance: none;
      width: 175px;
      padding: 0.75rem 2rem 0.75rem 1rem; /* Adjusted padding for arrow space */
      font-size: 1rem;
      color: #2c3e50;
      background-color: #fff;
      border: 1px solid #dcdcdc;
      border-radius: 4px;
      outline: none;
      cursor: pointer;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .options:hover {
      border-color: #3498db;
    }

    .options:focus {
      border-color: #3498db;
      box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    }

    /* Custom arrow */
    .select-wrapper::after {
      content: '\25BC';
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%);
      color: #2c3e50;
      font-size: 0.8rem;
      pointer-events: none;
    }

    /* Hide the placeholder option in the dropdown list */
    .options option:disabled {
      display: none;
    }

    /* Style for selected option */
    .options option:checked {
      background-color: #3498db;
      color: #fff;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .select-container {
        max-width: 100%;
        padding: 0 0.5rem;
        flex-direction: column; /* Stack vertically on small screens */
        gap: 10px;
      }

      .select-wrapper {
        width: 100%;
      }

      .options {
        font-size: 0.9rem;
        padding: 0.65rem 2rem 0.65rem 0.9rem;
      }
    }
/* 




































.select-box {
    position: relative;
    width: 200px;
    margin:0 auto;

} */

/* Style the select element */
/* .select-box select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    cursor: pointer;
} */

/* Style the custom arrow */
/* .select-box::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
} */

/* Hover and focus styles */
/* .select-box select:hover,
.select-box select:focus {
    border-color: #888;
} */

/* Style the options */
/* .select-box select option {
    padding: 10px;
    background-color: #fff;
    color: #333;
} */
/* ******************************************************************************** */



/* .select-style {
    border: .067rem solid #ccc;
    border-radius: .4rem;
    overflow: hidden;
    background: #3498db;
    color: white;
    font-size: 2rem;
    padding: .62rem 1.25rem .62rem 1.25rem;
    outline: none;
}

.select-style select {
    padding: .333rem .533rem;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
}

.select-style:hover {
    background: #3cb0fd;
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    text-decoration: none;
} */


/*******************************************************************************************************************
******************************************************* TEXTBOX ****************************************************
********************************************************************************************************************/

.text-body {
    position: relative;
    top: -2px;
    border: .1rem solid #ccc;
    margin: .67rem;
    padding-left: .5rem;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 1.6rem;
    height: 2.2rem;
    /*    -moz-transition: all .6s;
    -webkit-transition: all .6s;
    transition: all .6s;*/
    border-radius: .6rem;
}

.text-body:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 .067rem .067rem rgba(0, 0, 0, .075), 0 0 .533rem rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 .067rem .067rem rgba(0, 0, 0, .075), 0 0 .533rem rgba(102, 175, 233, 0.6);
}


/*******************************************************************************************************************
******************************************************* AREA TEXTBOX ***********************************************
********************************************************************************************************************/

.text-area {
    position: relative;
    top: -2px;
    border: .1rem solid #ccc;
    margin: .67rem;
    padding-left: .5rem;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 1.6rem;
    border-radius: .6rem;
    background-color: Cornsilk;
    height: 20rem;
}

.text-area:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 .067rem .067rem rgba(0, 0, 0, .075), 0 0 .533rem rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 .067rem .067rem rgba(0, 0, 0, .075), 0 0 .533rem rgba(102, 175, 233, 0.6);
}


/*******************************************************************************************************************
************************************************* Radio Buttons ****************************************************
********************************************************************************************************************/

.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 2.33rem;
    margin-bottom: .8rem;
    cursor: pointer;
    font-size: 1.467rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.radio-container input {
    position: absolute;
    opacity: 0;
}


/* Create a custom radio button */

.radio-checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.radio-container:hover input~.radio-checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.radio-container input:checked~.radio-checkmark {
    background-color: cornflowerblue;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.radio-container input:checked~.radio-checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.radio-container .radio-checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
}


/*******************************************************************************************************************
**************************************************** Checkboxes ****************************************************
********************************************************************************************************************/

.chk-container {
    display: block;
    position: relative;
    padding-left: 2.33rem;
    margin-bottom: .8rem;
    cursor: pointer;
    font-size: 1.467rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.chk-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom checkbox */

.chk-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.67rem;
    width: 1.67rem;
    background-color: #eee;
}


/* On mouse-over, add a grey background color */

.chk-container:hover input~.chk-checkmark {
    background-color: white;
}


/* When the checkbox is checked, add a blue background */

.chk-container input:checked~.chk-checkmark {
    background-color: #2196F3;
}


/* Create the checkmark/indicator (hidden when not checked) */

.chk-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.chk-container input:checked~.chk-checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.chk-container .chk-checkmark:after {
    left: .6rem;
    top: .33rem;
    width: .33rem;
    height: .667rem;
    border: solid white;
    border-width: 0 .2rem .2rem 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}