.button {
    display: inline-block;
    padding: 10px 42px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-filled {
    background-color: #0071E3;
    color: white;
}

.button-filled:hover {
    background-color: #0077ED;
}

.button-tinted {
    background-color: rgba(0, 122, 255, 0.1);
    color: #007AFF;
}

.button-tinted:hover {
    background-color: rgba(0, 122, 255, 0.2);
}

.button-static {
    cursor: default;
}

.button-static:hover {
    background-color: rgba(0, 122, 255, 0.1);
}

@media (max-width: 768px) {
    .button {
        padding: 8px 32px;
        font-size: 15px;
    }
}
