/* ======================================
   BUTTON STYLES - BOURBON STREET
   ====================================== */

button, .button {
    font-size: 16px;
    line-height: 100%;
    border: 4px solid transparent;
    box-shadow: 0 0 0 1px var(--theme-500);
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 7px;
    padding: 12px 20px;
    background-color: var(--theme-900);
    background-clip: padding-box;
    font-weight: 700;
    font-family: Crimson Pro, serif;
    text-transform: uppercase;
    transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, color 300ms ease;
    height: auto;
    cursor: pointer;
}

/* Adjust padding when button contains an icon */
button:has(.material-icons),
button:has(.material-icons-outlined),
.button:has(.material-icons),
.button:has(.material-icons-outlined) {
    padding: 12px 15px 12px 20px;
}

/* Icon sizing inside buttons */
.button .material-icons,
.button .material-icons-outlined {
    font-size: 18px;
}

.button:hover {
    color: var(--white-transparent);
    text-decoration: none;
    background-color: var(--theme-950);
    border-color: var(--theme-950);
}

.button:focus {
    color: #fff;
    text-decoration: none;
    background-color: var(--theme-700);
    border-color: var(--theme-950);
    box-shadow: 0 0 0 1px var(--theme-50);
}