/* ----------- main svg ----------- */
.main_svg {
    color: var(--main_svg);
    transition: color 0.2s ease;
}
/* ----------- main svg ----------- */


/* ----------- main button ----------- */
.main_button {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid var(--main_border);
    color: rgb(123, 123, 123) !important;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.main_button:hover {
    border-color: var(--main_hover) !important;
    color: #e0e0e0 !important;
}
/* ----------- main button ----------- */

.custom_button {
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    background: none;
    color: var(--main_color);
    padding: 5px 9px;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.05s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(79,158,255,0.25);
    white-space: nowrap;
}



/* ----------- secondary button ----------- */
.secondary_button {
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: 1px solid rgba(79,158,255,0.25);
    color: rgb(123, 123, 123) !important;
    padding: 5px 9px;
    height: 32px;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.05s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}
.secondary_button:hover {
    border-color: var(--main_hover);
    color: #e0e0e0 !important;
}
/* ----------- secondary button ----------- */


.main_button:focus-visible {
    outline: 1px solid var(--on_hover);
}

.svg_button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.svg_button:hover svg {
    color: rgb(119, 147, 240) !important;
}


.reset_button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

