.white-btn {
    background-color: white;
    color: var(--gray);
}

.gray-btn {
    background-color: #E0E0E0;
    color: var(--gray-light);
}

.light-btn {
    background-color: var(--yellow);
    color: var(--gray);
}

.light-btn:hover {
    background-color: var(--yellow-light);
}

.white-btn:hover {
    background-color: #e9e9ec;
}

.gray-btn:hover {
    background-color: #e9e9ec;
}

button {
    width: 100%;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    border-radius: 0.375em;
    border: none;
    padding: 0.5em 2.5em;

    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.close-btn {
    position: absolute;
    top: 6px;
    right: 14px;
    font-size: 24px;
    color: var(--gray);
}
