/* SMALL BUTTONS */
/* Firefox Mobile Fixes */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button:focus-visible {
  outline: 2px solid #590af2;
  outline-offset: 2px;
}

button{
    font-size: clamp(18px, 2vw, 20px);
}
.closeXbutton{
    all: unset; /* Best reset if you're sure you want to remove all inherited styles */
    cursor: pointer; /* Add this back if it's meant to be clickable */
    justify-self: right;
}
.toggle-switch-group{
    display: inline-flex;
    border:2px solid black;
    overflow: hidden;
    justify-self: flex-start;
}
.toggle-switch {
    padding: 10px;
    background-color: transparent;
    border:none;
    border-right:2px solid black;
    color: black;
    font-weight: 400;
    cursor: pointer;
}
.toggle-switch-last{
    border-right:none;
}
.toggle-switch.clicked{
    background-color: black;
    color: white;
    border:none;
}
.toggle-switch-hover{
    color: #590af2;
}

.food-option-button {
    display: flex; /* Use flexbox */
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    font-weight: 700;
    color: black;
    cursor: pointer;
    gap: 10px; /* Ensure spacing between dot and text */
    text-align: left; /* Default text alignment */
}
.food-option-button.clicked {
    background-color: transparent;
    color: #590af2;
    font-weight: bold;
}

.food-option-button.clicked{
    background-color: transparent;
    color: #590af2;
    font-weight: bold;
}

.customCheckbox {
    display: flex; /* Use flexbox */
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    font-weight: 700;
    color: black;
    cursor: pointer;
    gap: 10px; /* Ensure spacing between dot and text */
    text-align: left; /* Default text alignment */
}
.notBold{
    font-weight: 450;
}
.customCheckbox.clicked {
    background-color: transparent;
    color: #590af2;
}

.customCheckbox.clicked{
    background-color: transparent;
    color: #590af2;
    font-weight: bold;
}

.dot{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid black;
    background-color: transparent;
    display: inline-block;
    flex-shrink: 0;
}

.dot-hover{
    background-color: #d2d2ff;
}
.dot-hover-white{
    background-color: white;
}

.dot-active{
    background-color: #590af2;
    border: 2px solid #590af2;
}

.plus_min_btn{
    width: 30px; /* Adjust as needed */
    height: 30px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
}

.plus_btn{
    background-image: url('../symbols/plus_min_button/plus_btn.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
}

.plus_btn:active {
    background-image: url('../symbols/plus_min_button/plus_btn_click.png'); /* Change image */
}

.plus_btn-hover {
    background-image: url('../symbols/plus_min_button/plus_btn_hover.png'); /* Change image */
}

.min_btn{
    background-image: url('../symbols/plus_min_button/min_btn.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
}

.min_btn:active {
    background-image: url('../symbols/plus_min_button/min_btn_click.png'); /* Change image */
}

.min_btn-hover {
    background-image: url('../symbols/plus_min_button/min_btn_hover.png'); /* Change image */
}

.standardButton {
  background-color: #590af2;
  border: 2px solid #590af2;
  color: white;
  border-radius: 100px;
  font-weight: 700;
  padding: 8px 16px; /* vertical | horizontal */
  display: inline-block; /* or inline-flex */
  text-align: center;
  cursor: pointer; /* optional: make it look clickable */
  align-content: center;
}

.standardButton-hover{
    border:2px solid #2a0393; 
    background-color: #2a0393;
}

.outlineButton{
    background-color: transparent;
    border:2px solid #590af2;  
    color: #590af2;
    border-radius: 100px;
    font-weight: 500;
    padding: 8px 16px; /* vertical | horizontal */
    display: inline-block; /* or inline-flex */
    text-align: center;
    cursor: pointer; /* optional: make it look clickable */
}
.oultineButton-hover{
    border:2px solid black; 
    color: black;
}

/* Desktop & laptop */
@media (min-width: 1200px) { /*desktop*/
    
}

/* Tablet horizontal */
@media only screen and (max-width: 1199px) { /*desktop*/
    
}

/* Tablet vertical, Old Mobile, Small Desktop window */
@media only screen and (max-width: 999px) {
}

/* Mobile horizontal */
@media only screen and (max-width: 999px) and (max-height: 499px) and (min-resolution: 190dpi) {
    button{
        font-size: clamp(22px, 2vw, 25px);
    }
    .food-option-button{
        font-size: 25px;
        border:2px solid #590af2;
    }
    .standardButton, .outlineButton{
    }
}

/* Mobile vertical */
@media only screen and (max-width: 999px) and (min-width: 800px) and (min-height: 800px) and (min-resolution: 190dpi) {
    button{
        font-size: clamp(45px, 5vw, 48px);
    }
    .food-option-button{
        font-size: 48px;
        gap: 15px;
    }
    .toggle-switch-group{
        border:4px solid black;
    }
    .toggle-switch{
        border-right:4px solid black;
    }
    .toggle-switch-last{
        border-right:none;
    }
    .dot{
        height: 45px;
        width: 45px;
        border-radius: 50%;
        border: 4px solid black;
        display: inline-block;
    }
    
    .dot-active{
        height: 45px;
        width: 45px;
        background-color: #590af2;
        border-radius: 50%;
        border: 4px solid #590af2;
        display: inline-block;
    }

    .toggle-switch {
        padding: 25px;
    }
    .plus_min_btn, plus_btn {
        margin-left: 25px;
    }

    .plus_min_btn{
        width: 70px;
        height: 70px;
    }

    .standardButton, .outlineButton{
        border:4px solid #590af2; 
        padding: 16px 32px; /* vertical | horizontal */
    }
}
